Structured binding declaration cannot have type 'int'
Answers
Answered by
2
Structured binding declaration (since C++17) Binds the specified names to subobjects or elements of the initializer. Like a reference, a structured binding is an alias to an existing object. Unlike a reference, the type of a structured binding does not have to be a reference type.
Similar questions