Swiftでカリー化してみた。
Swiftの勉強がてらカリー化を考えてみました。こんな感じかと。
curry.swift
func curry<T1,T2,T3>(_ f:@escaping (T1,T2) -> T3) -> (T1) -> (T2) -> T3 {
func F(x:T1) -> (T2) -> T3 { return {(y:T2) in f(x,y)}}
return F
}
let curryadd = curry((+) as (Int,Int) -> Int)
let add3 = curryadd(3)
add3(10)
Author And Source
この問題について(Swiftでカリー化してみた。), 我々は、より多くの情報をここで見つけました https://qiita.com/KatagiriSo/items/068d7a19bff47c356d66著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .