right<L, R> function

Either<L, R> right<L, R>(
  1. R value
)

Returns an Either that resolves to a Right value.

Implementation

Either<L, R> right<L, R>(R value) => Right(value);