我想找到一种方法来获取前奏Haskell的所有内部命名空间。
与我们在Python中执行此操作相当的东西::
>>> print([func for func in dir(__builtins__) if func[0].islower()])
['abs', 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr',
'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len',
'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod',
'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
>>> print(len.__doc__)
Return the number of items in a container.
>>>
这不是关于“如何从图书馆的内容中获取信息”的问题,就像他们在这里说的那样:Is there a way to see the list of functions in a module, in GHCI?
这是关于内置的,所以关于你没有导入任何libray的语言。
我需要在专业版program.hs
中获取功能列表,而不是在Prelude帮助系统或Prelude完成系统中。
答案 0 :(得分:3)
在GHCi中,您可以输入eb ssh
列出:browse Prelude
模块导出的所有内容。
我本地安装的输出:
Prelude
答案 1 :(得分:0)
正如我在回答您的问题How to know what are the full list of function availlable in an import?时所示,您可以使用 ghc-mod 。
在上面引用的答案中替换
行out< - run" ghc-mod" ["浏览"," -d"," Data.List"]
带
<copy destinationfolder="..\References\Libraries\" overwritereadonlyfiles="true" sourcefiles="$(OutputPath)\$(AssemblyName).dll" />
<copy destinationfolder="..\References\Libraries\" overwritereadonlyfiles="true" sourcefiles="$(OutputPath)\$(AssemblyName).pdb" />
<copy destinationfolder="..\References\Libraries\" overwritereadonlyfiles="true" sourcefiles="$(OutputPath)\$(AssemblyName).xml" />