is there a way to provide to Swift, functions with...
# ios
d
is there a way to provide to Swift, functions with unnamed arguments? such as this?
Copy code
func bar(_ a: Int, _ b: Int) -> Int {
        return a + b
    }