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