A copy of std::tie from C++. TODO: write proper documentation for this
int a; string b; tie(a, b) = tuple(3, "hi"); assert(a == 3 && b == hi);
See Implementation
A copy of std::tie from C++. TODO: write proper documentation for this