Structured bindings with const
What is the result of of decltype(a) in the following?
std::pair<int, double> p{1, 2.0};
const auto& [a, b] = p;
Sign in to answer questions and track your progress
Sign InWhat is the result of of decltype(a) in the following?
std::pair<int, double> p{1, 2.0};
const auto& [a, b] = p;
Sign in to answer questions and track your progress
Sign In