Closed demianmnave closed 6 years ago
It would be useful to support C++17 structured binding to the elements of a fixed-size cml::vector<>. For example:
cml::vector<>
auto [x,y,z] = cml::vector3d(1.,2.,3.);
should yield
x = 1. y = 2. z = 3.
Fixed in d351844
It would be useful to support C++17 structured binding to the elements of a fixed-size
cml::vector<>
. For example:should yield