andThen<N1> method

HKT3<KT, P1, P2, N1> andThen<N1>(
  1. HKT3<KT, P1, P2, N1> then()
)

Implementation

HKT3<KT, P1, P2, N1> andThen<N1>(
  HKT3<KT, P1, P2, N1> Function() then,
) =>
    flatMap((_) => then());