left<L, R> static method
Creates a Left value (typically representing an error)
Implementation
static Either<L, R> left<L, R>(L value) => Left(value);
Creates a Left value (typically representing an error)
static Either<L, R> left<L, R>(L value) => Left(value);