Swift - Data Types
Given this code, what is the type of
operation? typealias Operation = (Int, Int) -> Int
let operation: Operation = { a, b in a + b }