Better Either Generics
BREAKING:
Either now has types for left and right
// New
function(): Either<LeftType, RightType> {}
// Old
function(): Either<RightType> {}BREAKING:
Either now has types for left and right
// New
function(): Either<LeftType, RightType> {}
// Old
function(): Either<RightType> {}