Hacker News new | ask | show | jobs
by amorde 3181 days ago
You can also shorten it to:

{ doSomething($0) }

1 comments

Or just

doSomething

I wasn't aware of that syntax? It will just pass the arguments from the parent to the child in order?
As long as the signature of the function matches you can pass it in directly
Functions are values in Swift. Closure literal syntax is just a shorthand where you don’t have to name the function first.