right<L, R> static method

EitherBuilder<L, R> right<L, R>(
  1. R value
)

Implementation

static EitherBuilder<L, R> right<L, R>(R value) =>
    EitherBuilder(E.Right(value));