Is there a C++11 equivalent to this python statement:
x, y, z = three_value_array
In C++ you could do this as:
double x, y, z;
std::array<double, 3> three_value_array;
// assign values to three_value_array
x = three_value_array[0];
y = three_value_array[1];
z = three_value_array[2];
Is there a more compact way of accomplishing this in C++11?