GHCi 可以告诉我本地 Haskell 函数的类型吗?

发布于 2024-08-18 19:58:56 字数 36 浏览 7 评论 0原文

是否可以查询 ghci 为另一个函数内的函数推断出的类型?

Is it possible to query the ghci for the type it inferred for a function inside another function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

战皆罪 2024-08-25 19:58:56

这是一个快速而丑陋的 hack,但我通常所做的只是以错误的方式使用该函数并读取错误消息:

inc x = x + 1
  where
    f (y, z) = y + z
    g = f :: Char

GHCi 输出:

Couldn't match expected type `Char'
       against inferred type `(t, t) -> t'
In the expression: f :: Char

尽管这忽略了上下文 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:

inc x = x + 1
  where
    f (y, z) = y + z
    g = f :: Char

GHCi output:

Couldn't match expected type `Char'
       against inferred type `(t, t) -> t'
In the expression: f :: Char

Although this leaves out the context Num t =>, this usually does provide me with enough information to continue.

旧情别恋 2024-08-25 19:58:56

您可以尝试通过在其上设置断点来执行此操作,以便该函数位于调试器的范围内。

另外,我认为当您将鼠标悬停在事物上时,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.

请持续率性 2024-08-25 19:58:56

对于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文