Unwraps the value of an Either, throwing if the value is Left.
R unwrap<L, R>(Either<L, R> either) => either._fold( (l) => throw UnwrapException(l), identity, );