是否有可能找到與GHCI where
聲明中定義的功能的類型?如何找到與GHCI的子功能類型
例如,考慮這樣的功能:
myFunction a b c = case result of
2 -> ...
where
subFunctA = ...
_ -> ...
where
subFunctB = ...
subFunctC = ...
類型的myFunction
可以:t myFunction
被找到。
是否有可能找到類型subFunctA
,subFuncB
和subFunctC
與GHCI?