apply method

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

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

Implementation

Either<E, U> apply(Either<E, T> arg) => arg.liftEither<T, U, E>(this, arg);