tuple_destructure.hpp
allows the use of structured bindings with stdx::tuple.
auto t = stdx::tuple{1, 2};
auto &[x, y] = t;|
Note
|
tie is not implemented.
|
tuple_destructure.hpp
allows the use of structured bindings with stdx::tuple.
auto t = stdx::tuple{1, 2};
auto &[x, y] = t;|
Note
|
tie is not implemented.
|