Either<L, R>.left constructor

Either<L, R>.left(
  1. L v
)

Implementation

factory Either.left(L v) {
  return Left(v);
}