right<L, R> function

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

Shortcut for Either.right.

Implementation

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