left<L, R> static method

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

Creates a Left value (typically representing an error)

Implementation

static Either<L, R> left<L, R>(L value) => Left(value);