IterableCodec class abstract

Base class for encoding from and to 8-bit integer sequence

Inheritance

Constructors

IterableCodec()
Creates a new IterableCodec instance.
const

Properties

decoder BitDecoder
Returns the decoder of this, converting from T to S.
no setteroverride
encoder BitEncoder
Returns the encoder from S to T.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
inverted Codec<Iterable<int>, Iterable<int>>
Inverts this.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decode(Iterable<int> encoded) Iterable<int>
Decodes encoded data.
inherited
decodeBuffer(ByteBuffer encoded) Iterable<int>
Decodess an encoded buffer using this codec
decodeString(String encoded) Iterable<int>
Decodes an encoded string using this codec
encode(Iterable<int> input) Iterable<int>
Encodes input.
inherited
encodeBuffer(ByteBuffer input) Iterable<int>
Encodes an input buffer using this codec
encodeString(String input) Iterable<int>
Encodes an input string using this codec
fuse<R>(Codec<Iterable<int>, R> other) Codec<Iterable<int>, R>
Fuses this with other.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited