export function Left<T, U>(value: T): Either<T, U> {
    return new LeftProj<T, U>(value);
}