Either<L, R>.right constructor

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

Implementation

factory Either.right(R v) {
  return Right(v);
}