how to know in Haskell the builtins functions?
问题 I look for a way to get all the builtins namespace of prelude Haskell. something equivalent to what we can have in Python doing this:: >>> 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