We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Initial support for C++17 structured bindings (#11).
1a8d559
Fixed in d351844
Sorry, something went wrong.
demianmnave
No branches or pull requests
It would be useful to support C++17 structured binding to the elements of a fixed-size
cml::vector<>
. For example:should yield
The text was updated successfully, but these errors were encountered: