Is there any reason to prefer `list.map(::function...
# getting-started
s
Is there any reason to prefer
list.map(::function)
vs
list.map { function(it) }
?