modify<S, C, L, R> function
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))));
StateReaderTaskEither<S, C, L, Unit> modify<S, C, L, R>(S Function(S s) f) =>
StateReaderTaskEither((s) => RTE.right(tuple2(U.unit, f(s))));