I know I'm asking the wrong question here, but I'm coming to Haskell from Python, and I'd like to know how to get what would be the equivalent of a list of available methods for a class. For example, if I'm using HXT to parse an XML file, and there are some functions I can use on the resulting data structure, NTree, like the function getChildren, for instance, how would I go about getting a list of them from, say, ghci? In Python I can just import a module and type module. to get a list.