combine<R2> method

Either<L, Product2<R, R2>> combine<R2>(
  1. Either<L, R2> other
)

Implementation

Either<L, Product2<R, R2>> combine<R2>(Either<L, R2> other) => isLeft()
    ? Either.left(_left)
    : other.isLeft()
        ? Either.left(other._left)
        : Either.right(Product2(_right, other._right));