Re: [Haskell-cafe] Module names from a function name

2013-08-07 Thread Roman Cheplyaka
Hi, You can easily do this using the haskell-names library. See http://documentup.com/haskell-suite/haskell-names Roman * Jong-won Choi [2013-08-08 12:34:44+1000] > Hi, > > I asked this question to beginner mailing list and no luck so far, so > I'm trying here. > > How can I get all the modul

Re: [Haskell-cafe] Module names from a function name

2013-08-07 Thread Jong-won Choi
Thanks for the suggestion, but I am looking for a programmatic way. Is module in Haskell first class object? Does it maintain function names which are exported? On 08/08/13 12:41, Patrick Mylund Nielsen wrote: hoogle after running cabal install hoogle and hoogle data On Aug 7, 2013 10:35 P

[Haskell-cafe] Module names from a function name

2013-08-07 Thread Jong-won Choi
Hi, I asked this question to beginner mailing list and no luck so far, so I'm trying here. How can I get all the module names which (re-)export a given function name? I'd like to fix Emacs Haskell mode - interactive documentation browser and I need the list of such module names. Thanks! -