如何在F#中检索函数名?

时间:2009-08-23 23:42:45

标签: f#

考虑代码示例:

let foo x = x

let bar f =
  printf "function name is %s" (*?*)

bar foo //should print: "function name is foo" 

非常感谢!

1 个答案:

答案 0 :(得分:4)

你不能,抱歉。 (根据您想要做的具体情况,可能存在约束,您可以削弱并​​完成工作。)

也许还可以看到 Getting the name of the parameter passed into a method