与えられた機能:
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
関数シグネチャを再利用するために定義することは可能ですか?