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