`fun <A, B> Either<A, B>.get() = fold(...
# arrow
p
fun <A, B> Either<A, B>.get() = fold({ throw it }, { it })