pure<C> method

  1. @override
Either<L, C> pure<C>(
  1. C c
)
override

Return a Right containing the value c.

Implementation

@override
Either<L, C> pure<C>(C c) => Right<L, C>(c);