Eithers class abstract

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

combine2<L, R1, R2>(Either<L, R1> first, Either<L, R2> second) Either<L, (R1, R2)>
combine3<L, R1, R2, R3>(Either<L, R1> first, Either<L, R2> second, Either<L, R3> third) Either<L, (R1, R2, R3)>
combine4<L, R1, R2, R3, R4>(Either<L, R1> first, Either<L, R2> second, Either<L, R3> third, Either<L, R4> fourth) Either<L, (R1, R2, R3, R4)>
combine5<L, R1, R2, R3, R4, R5>(Either<L, R1> first, Either<L, R2> second, Either<L, R3> third, Either<L, R4> fourth, Either<L, R5> fifth) Either<L, (R1, R2, R3, R4, R5)>