andThen<C> method

BiDi<A, C> andThen<C>(
  1. BiDi<B, C> bidi
)

Implementation

BiDi<A, C> andThen<C>(BiDi<B, C> bidi) => BiDi.compose(
      aToB: this,
      bToC: bidi,
    );