Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有兴趣玩这个 github项目。似乎缺少依赖项。有人可以从上下文中告诉我包裹catch的来源。只是Control.Exception想到了,但我认为这是不对的。
catch
Control.Exception
在这种情况下很容易判断,因为每个导入都有一个导入列表或者是合格的,我们马上看到catch的没有明确导入的合格。
在 haskell 中,未显式导入的函数来自Prelude. 这是docs的链接。你可能很难找到它,因为它在最新版本的 Haskell 中被删除,取而代之的是你在Control.Exception. 玩得开心项目!
Prelude