newDecoderFeed

Creates a new Decoder.Feed, outputting decoded data to the supplied Decoder.OutFeed.

e.g.

myDecoder.newDecoderFeed { decodedByte ->
    println(decodedByte)
}.use { feed ->
    "MYencoDEdTEXt".forEach { c -> feed.consume(c) }
}

See also