> If you see collection.map(...) you know that each iteration is simply a pure function from original element to transformed element, which is an immense help when reading the code.
You'd think so, but I've had colleagues who managed to fuck that up and use map or list comprehension solely for side-effects.
And I thought it was abusing the map() call for side effects. However, it is still shorter than writing it out as follows:
def update(): Try[Unit] = {
parser.parse(...) match {
case Success(result) =>
updateState(result)
Success(())
case f@Failure(_) =>
f
}
}
So I didn't have a strong opinion either way since semantically both do the same (and in the case of Scala, the first one is potentially more performant since it relies on the JVM doing virtual dispatch as opposed to calling unapply() and matching, not to mention potentially less garbage being generated).
Yeah I mean my point is "trust but verify", I love restricted iteration construct, but just because they're being used does not mean they're being used "properly" unless the language ensures it.
You'd think so, but I've had colleagues who managed to fuck that up and use map or list comprehension solely for side-effects.