13

Haskell ファイルを GHCi にロードしてから を使用する以外:type <expr>に、コンパイル時にすべての関数の型をコンパイラに表示させる方法はありますか?

4

1 に答える 1

15

If you pass -fwarn-missing-signatures (or -Wall) to GHC it will list every top-level function that has no type annotation in the file, together with the inferred type.

于 2013-06-06T20:22:42.720 に答える