如果我记录一个功能:
Debug.log "List.foldl" (toString List.foldl)
<function> : a -> a
我得到了它的功能签名。如何获得函数的主体?
答案 0 :(得分:2)
Debug.log有两个参数:字符串和任何变量。它们都将打印出来,第一个参数应该用作简单描述你要发送到日志的内容。
在你的情况下,它可能是:
Debug.log "List.foldl func" <| List.foldl
<function>
: (a -> b -> b) -> b -> List a -> b