Either<L, R>.left constructor

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

Create a Left.

Implementation

const factory Either.left(L left) = Left;