我在哪里可以找到 Stack 的相应名称列表 package.yaml,从 Haskell 中的代码中的 Import 语句中知道包名称
Where I can find a list of corresponding names for Stack's package.yaml, knowing package name from Import sentence in a code in Haskell
我们如何找到包的“名称”以包含在 package.yaml 的依赖列表中,它对应于 haskell 源文件中的特定“导入”语句?
例如。
在 hs 源代码中,我需要有类似
的东西
import Systm.Arch
要放入依赖列表中的 package.yaml 文件的包的名称是什么?
它应该是这样的:
...
dependences:
- base >= 4.7 && < 5
- <package_name_corresponding_to "import System.Arch">
在哪里可以找到适合 package.yaml 或 cabal 文件的这样的列表?
先感谢您。
P.S。例如,如果我有 hs code
import Data.Time
在package.yaml,我有这个刺痛
- time
使用Hoogle. E.g. if you look for Data.Map
, you see it is in the containers
package (green text below the result): https://hoogle.haskell.org/?hoogle=Data.Map&scope=set%3Astackage
我们如何找到包的“名称”以包含在 package.yaml 的依赖列表中,它对应于 haskell 源文件中的特定“导入”语句? 例如。 在 hs 源代码中,我需要有类似
的东西import Systm.Arch
要放入依赖列表中的 package.yaml 文件的包的名称是什么? 它应该是这样的:
...
dependences:
- base >= 4.7 && < 5
- <package_name_corresponding_to "import System.Arch">
在哪里可以找到适合 package.yaml 或 cabal 文件的这样的列表? 先感谢您。 P.S。例如,如果我有 hs code
import Data.Time
在package.yaml,我有这个刺痛
- time
使用Hoogle. E.g. if you look for Data.Map
, you see it is in the containers
package (green text below the result): https://hoogle.haskell.org/?hoogle=Data.Map&scope=set%3Astackage