http://dlang.org/phobos/std_functional.html
assert(compose!(map!(to!(int)), split)("1 2 3") == [1, 2, 3]);
and
int[] a = pipe!(readText, split, map!(to!(int)))("file.txt");
throwing a std.array.array into the mix works fine.
did this use to work? is there any other way of doing it?
