當詢問GHCI
爲type
或info
,哪個名稱空間用於名稱和表達式?GHCI詢問類型或值名稱空間?
:type <expr> show the type of <expr>
:info[!] [<name> ...] display information about the given names
(!: do not filter instances)
我不確定我在問什麼,下面的簽名是什麼意思。
Prelude Control.Monad.State> :t StateT
StateT :: (s -> m (a, s)) -> StateT s m a
是從值命名空間第一StateT
和第二從類型命名空間中的響應線?
類型簽名的形式表達':: type'的。所有值在'::'的左邊,所有類型都在右邊。 –