Seems like it would unify things quite a bit.

import std.typecons, std.range, std.array, std.algorithm, std.stdio;

void main()
{
        auto t = tuple(3,4,5,6);
        //auto t = [3,4,5,6];
        
        writeln(t.map!(a => 3*a).sum());
        
        
}

Reply via email to