in a non-arrow context, the `also` scope function ...
# functional
w
in a non-arrow context, the
also
scope function works well to encapsulate side effects
r
also
is eager in evaluation so it can’t suspend or control side effects for safe resource handling unless it’s inside a
suspend
function. It is a convenient way to run uncontrolled effects ignoring their result though.
1