<div dir="ltr"><div><div><div><div><div><div><div><div><div><div>Hello,<br><br></div>is it possible to search for all functions that have concrete type? <br>For example I want to convert [Char] to [Word], but I don't know whether function for that exist.<br></div>Or I wanna find contructor for SomeSpecialType and I don't know it's name. <br>Can you search those function in GHCI via some command?<br><br></div>E.G. <br><br>GHCi, version 8.0.1: <a href="http://www.haskell.org/ghc/">http://www.haskell.org/ghc/</a>  :? for help<br>[}{]  :searchtype / :st [Char] -> [Word]<br></div>Found X match(es):<br></div>foo1 :: (Char -> Word) -> [Char] -> [Word]<br></div>foo2 :: [Char] -> [Word]<br>...<br></div><br>[}{]  :st SomeSpecialType<br>Found 1 match(es):<br></div>foo3 :: ... -> .. -> SomeSpecialType<br><br></div>King Regards,<br><br></div>Ford<br></div>