On 10/13/17 3:17 PM, Steven Schveighoffer wrote:
> this should work (something like this really should be in iopipe):
>
> while(input.extend(0) != 0) {} // get data until EOF
This should work today, actually. Didn't think about it before.
input.ensureElems(size_t.max);
-Steve