`fun bla(p: Either<Error, Int>): Either<E...
# arrow
p
fun bla(p: Either<Error, Int>): Either<Error, String> = p.map { (it + 1).toString() }