Map safely transforms a value in the Outcome. It has no effect on Absent or Failure instances.
Absent
Failure
Present(1).map { it + 1 } // Present(2)Absent.map { it + 1 } // AbsentFailure("bad").map { it + 1 } // Failure("bad")