operator >> method

Either<E, U> operator >>(
  1. Either<E, T> arg
)

Apply the arg arg to this Function only in case both the arg and Function are available.

Behaves like a compose right operator.

Implementation

Either<E, U> operator >>(Either<E, T> arg) => apply(arg);