export function Right<A, B>(b: B): Either<A, B> {
    return new RightImpl<A, B>(b);
}