Swift 柯里化(currying)和反柯里化(uncurrying)

来源:互联网 发布:c语言经典编程题pdf 编辑:程序博客网 时间:2024/05/17 22:59

// Demo of currying


func addTwoNums(a: Int)(num: Int) -> Int {

    return a + num

}


let addToFour = addTwoNums(4)

let result = addToFour(num: 6)

print("result: \(result)")


func greaterThan(comparor: Int)(input: Int) -> Bool {

    return input > comparor

}


let greaterThan10 = greaterThan(10)

let b1 = greaterThan10(input: 10)

let b2 = greaterThan10(input: 4)

print("b1: \(b1)")

print("b2: \(b2)")


// Demo of uncurrying


let foo = {(a: Int) -> (Int) ->Int in

    return {(b: Int) ->Int in

        return a * a + b * b

    }

}


let interesting = foo(3)(4)

print("interesting: \(interesting)")


let interestingAgain = (foo(3))(4)

print("interestingAgain: \(interestingAgain)")



0 0
原创粉丝点击