【Swift】Closureの$0とか$1とか

developer.apple.com

Swift automatically provides shorthand argument names to inline closures, which can be used to refer to the values of the closure’s arguments by the names $0, $1, $2, and so on.

引数に特にこだわりがなければ第一引数を$0, 第二引数を$1, ...のように名前を省略できるらしい。

でもこれ初見の人絶対わからないよ。
これは省略しない方が良い気がする。。