export function Left<A, B>(a: A): Either<A, B> {
    return new LeftImpl<A, B>(a);
}