All pastes #2054316 Raw Edit

Someone

public text v1 · immutable
#2054316 ·published 2011-05-05 18:54 UTC
rendered paste body
class Either<A, B> {
    final A left;
    final B right;

    A left() { return left; }
    B right() { return right; }

    Either(A a) {
        left = a;
    }

    Either(B b) {
        right = b;
    }
}