andThen<C> method

HKT2<KT, A, C> andThen<C>(
  1. HKT2<KT, A, C> then()
)

Implementation

HKT2<KT, A, C> andThen<C>(HKT2<KT, A, C> Function() then) =>
    flatMap((_) => then());