Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 304 Bytes

File metadata and controls

13 lines (9 loc) · 304 Bytes

tuple_destructure.hpp

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.