给定功能:
let doTrue = fun(x) -> true
let doFalse = fun(x) -> false
我想重用函数签名以便我可以得到
let myFunDefinition = ??? // <-- this is the function signature that i am trying to reuse
let doTrue = myFunDefinition -> true // <-- now i don't have to type fun(x) any more
let doFalse = myFunDefinition -> false
是否可以定义重用函数签名?