On Tuesday, 16 September 2014 at 18:42:42 UTC, Justin Whear wrote:
The short answer is no. I usually use something like this:// Lazy auto stream = stdin.byChunk(4096).joiner();You can make it eager by tacking a `.array` on the end. Functions usedare from std.stdio, std.algorithm, std.array.
thanks. that's exactly what i need.