std.typecons.Tuple and tuples

bearophile bearophileHUGS at lycos.com
Mon Aug 2 08:33:32 PDT 2010


> ref auto Tuple_(string names, T...)(T args)
>   if (split(names).length == T.length) {

Sorry, I meant:

ref auto Tuple_(string names, T...)(T args)
    if (T.length && split(names).length == T.length) {



More information about the Digitalmars-d mailing list