combine2<L, R1, R2> static method

Either<L, (R1, R2)> combine2<L, R1, R2>(
  1. Either<L, R1> first,
  2. Either<L, R2> second
)

Implementation

static Either<L, (R1, R2)> combine2<L, R1, R2>(
  Either<L, R1> first,
  Either<L, R2> second,
) =>
    first.combine(second);