如何在 Elm repl 中查找函数类型

How to find type of a function in Elm repl

在 Haskell 中,您可以使用 :t 在 ghci 中查找函数类型,在 elm repl 中是否有等效项?

我无法尝试这个,因为我目前没有工作 elm-repl 但在我的脑海中,你可以在 repl 中输入函数名称,它会回答函数的类型。这是因为 Elm repl 将始终在结果值之后打印类型,因此如果您输入函数名称,它将打印 <function> 作为值,然后是类型:

> not

<function> : Bool -> Bool

>