On Monday, 7 October 2013 at 23:34:35 UTC, Brad Anderson wrote:
Nice.C++'s Boost uses the tuple library to accomplish this: int i; char c; double d; tie(i, c, d) = make_tuple(1, 'a', 5.5);
It is actually a standard now ;)
On Monday, 7 October 2013 at 23:34:35 UTC, Brad Anderson wrote:
Nice.C++'s Boost uses the tuple library to accomplish this: int i; char c; double d; tie(i, c, d) = make_tuple(1, 'a', 5.5);
It is actually a standard now ;)