> On Apr 20, 2016, at 8:46 AM, BJ Homer <[email protected]> wrote: > > How would this proposal affect curried functions? Would this: > > func foo(int: Int) -> Int -> String -> String > > become this? > > func foo(int: Int) -> (((Int) -> String) -> String)
No, it becomes: func foo(int: Int) -> (Int) -> (String) -> String -Chris _______________________________________________ swift-evolution mailing list [email protected] https://lists.swift.org/mailman/listinfo/swift-evolution
