modify<S, C, L, R> function

StateReaderTaskEither<S, C, L, Unit> modify<S, C, L, R>(
  1. S f(
    1. S s
    )
)

Implementation

StateReaderTaskEither<S, C, L, Unit> modify<S, C, L, R>(S Function(S s) f) =>
    StateReaderTaskEither((s) => RTE.right(tuple2(U.unit, f(s))));