Quickly Write Efficient Code With Modern Structured Bindings Available In C++17 On Windows With C++Builder
December 9, 2020
C++17 has a new feature that consolidates syntactic sugar and automatic type deduction:structured bindings. This helps to assign values from tuples, pairs, and structs into individual variables. In another programming language, you can find this as unpacking.
Applying a structured binding to specify various variables from one bundled structure is one step. Structured bindings always…