fuse<R> method

  1. @override
Codec<T, R> fuse<R>(
  1. Codec<T, R> other
)
override

Fuse with an other codec.

Fusing with the identify converter is a no-op, so this always return other.

Implementation

@override
Codec<T, R> fuse<R>(Codec<T, R> other) => other;