GHCi 可以告诉我本地 Haskell 函数的类型吗?
是否可以查询 ghci 为另一个函数内的函数推断出的类型?
Is it possible to query the ghci for the type it inferred for a function inside another function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个快速而丑陋的 hack,但我通常所做的只是以错误的方式使用该函数并读取错误消息:
GHCi 输出:
尽管这忽略了上下文
Num t =>
,这通常确实为我提供了足够的信息来继续。This is a quick and ugly hack, but what I usually do is just use the function in the wrong way and read the error message:
GHCi output:
Although this leaves out the context
Num t =>
, this usually does provide me with enough information to continue.您可以尝试通过在其上设置断点来执行此操作,以便该函数位于调试器的范围内。
另外,我认为当您将鼠标悬停在事物上时,EclipseFP 可以告诉您事物的类型,至少在某些时候是这样。
You might try doing it by setting a breakpoint on it, so the function is in scope from the debugger.
Also I think that EclipseFP can tell you the types of things when you mouse over them, at least some of the time.
对于 GHC 7.8+,只需将
`asTypeOf` _
附加到表达式中。请参阅找出带有类型孔的表达式/函数的类型 详细解释。
With GHC 7.8+, just append
`asTypeOf` _
to the expression.See Find out the type of an expression/function with typed holes for a detailed explanation.