lefts method

Iterable<A> lefts()

Extract the Left values

Implementation

Iterable<A> lefts() =>
    whereType<Left<A, B>>().map((e) => e.getL((_) => throw 'Unreachable'));