altavir
05/23/2019, 7:10 PMwhile (!endOfInput){
out.writeByte(readByte())
}
If I understand current IO logic correctly, the input in general has a sequence of pooled buffers, so it would be simple to redirect those buffers directly to the output, but I can't find a way to do it with current API.Dominaezzz
05/23/2019, 11:21 PMInput.copyTo(Output)
function?altavir
05/24/2019, 5:31 AM