Is there a suspending version of reading in an InputStream? Typically you need a `while (inp.hasNext...
n
Is there a suspending version of reading in an InputStream? Typically you need a
while (inp.hasNext()) { ... }
but that is blocking
a
#C1CFAFJSK