( (x,y) -> x+y ).( [ (1,2), (3,4) ] )

It’s a consequence of function argument destructuring, combined with anonymous function syntax. Argument destructuring is documented in

https://docs.julialang.org/en/v1/manual/functions/#Argument-destructuring

5 Likes