Why using foreach
, map
, flatMap
etc. are considered better than using get
for Scala Options? If I useisEmpty
I c
Trying to perform our Operations with get
is more imperative style where u need to tel what to do and how to do . In other words , we are dictating things and digging more into the Options
internals. Where as map,flatmap
are more functional way of doing things where we are say what to do but not how to do.