Utf8Encoder class

This class converts strings to their UTF-8 code units (a list of unsigned 8-bit integers).

This class converts strings to their UTF-8 code units (a list of unsigned 8-bit integers).

Extends

Constructors

Utf8Encoder()
const

Instance Methods

convert(String string, [int start = 0, int end]) → List<int>
Converts string to its UTF-8 code units (a list of unsigned 8-bit integers).
startChunkedConversion(Sink<List<int>> sink) → StringConversionSink
Starts a chunked conversion.
bind(Stream<String> stream) → Stream<List<int>>
Transform the incoming [stream]'s events.
fuse(Converter<List<int>> other) → Converter<String> Inherited
Fuses this with other.
fuse(Converter<List<int>> other) → Converter<String> Inherited
Fuses this with other.