pure<C> method

  1. @override
IOEither<L, C> pure<C>(
  1. C a
)
override

Returns a IOEither that returns a Right(a).

Implementation

@override
IOEither<L, C> pure<C>(C a) => IOEither(() => Right(a));