flatMap<B> method

Decoder<B> flatMap<B>(
  1. covariant Function1<A, Decoder<B>> f
)

Implementation

Decoder<B> flatMap<B>(covariant Function1<A, Decoder<B>> f) =>
    FlatMapDecoder(this, f);