right<L, R> function

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

Implementation

Either<L, R> right<L, R>(R right) => Either(null, right);