pure<S, C, L, R, R2> function

StateReaderTaskEither<S, C, L, R2> Function(StateReaderTaskEither<S, C, L, R>) pure<S, C, L, R, R2>(
  1. R2 a
)

Replace the StateReaderTaskEither with one that resolves to an Right containing the given value.

Implementation

StateReaderTaskEither<S, C, L, R2> Function(StateReaderTaskEither<S, C, L, R>)
    pure<S, C, L, R, R2>(R2 a) => (_) => right(a);