Andrei Alexandrescu:
Look at some of the syntaxes here: http://wiki.dlang.org/DIP32#Use_case_of_uniform_tuple_syntaxOne of the syntaxes: @{} @{a} @{a, b} @{a, b, c}WTF??? tuple() tuple(a) tuple(a, b) tuple(a, b, c) Andrei
So you are saying you want to support a syntax like this? tuple(a, b, c) = myFunc(); Bye, bearophile
