Record Class Left<L,R>

java.lang.Object
java.lang.Record
info.jab.util.either.Left<L,R>
Type Parameters:
L - the type of the Left value
R - the type of the Right value
Record Components:
value - the value
All Implemented Interfaces:
Either<L,R>

public record Left<L,R>(@Nonnull L value) extends Record implements Either<L,R>
A record representing the Left variant of an Either.