Hoogle is a Haskell API search engine, which allows you to search many standard Haskell libraries by either function name, or by approximate type signature. The online version can be found at https://hoogle.haskell.org/ and searches Stackage.
Hoogle can be used in several ways:
@hoogle
and @hoogle+
emacs
, by means of engine-mode
Here are some example searches:
map
searches as text, finding map
, concatMap
, mapM
con map
searches for the text "map" and "con" finding concatMap
, but not map
a -> a
searches by type, finding id :: a -> a
a
searches for the text "a":: a
searches for the type "a"id :: a -> a
searches for the text "id" and the type "a -> a"By default, searches look at the Haskell Platform and Haskell keywords. However, all Stackage packages are available to search. As some examples:
mode +cmdargs
searches only the "cmdargs" packagefile -base
searches the Haskell Platform, excluding the "base" packagemode +platform +cmdargs
searches both the Haskell Platform and the "cmdargs" packagecount +missingh
searches only the "MissingH" package - all packages are written in lower-caseWith the set of packages you are searching, you can also restrict the set of modules searched:
file -System
excludes results from modules such as System.IO
, System.FilePath.Windows
and Distribution.System
fold +Data.Map
finds results in the Data.Map
moduleTo invoke Hoogle type:
$ hoogle "[a] -> [b]"
Note the quotes, otherwise you will redirect the output to the file [b].
To ensure you have data files for the Hackage modules, you will first need to type:
$ hoogle generate
Which will download and build Hoogle databases.
There is a terminal/curses based UI available through cabal install bhoogle
.
As a keyword search: With a keyword search you can type h map
directly into the location bar to perform a Hoogle search. Go to the Hoogle website in Chrome, right-click in the Hoogle search field and select "Add as a search engine...". Give it a keyword such as "h".
From the search bar: Go to the Hoogle website in Firefox and click on the ⋯
symbol at the right of the URL bar, and select the "Add Search Engine" option. Click the hoogle logo at the bottom of the completion dropdown when searching to perform a Hoogle search.
As a keyword search: With a keyword search you can type h map
directly into the location bar to perform a Hoogle search. Go to the Hoogle website in Firefox, right-click in the Hoogle search field and select "Add a Keyword for this Search...". Given it a keyword such as "h".
$ git clone https://github.com/ndmitchell/hoogle.git
Contributions are most welcome. Hoogle is written in Haskell 98 + Heirarchical Modules, I do not wish to change this. Other than that, I'm pretty flexible about most aspects of Hoogle. The issue tracker has many outstanding tasks, but please contact me if you have thoughts on doing something major to Hoogle, so I can give some advice.
Hoogle work is licensed under the BSD-3-Clause license.
A lot of related work was done by Rittri [1] and Runciman [2] in the late 80's. Since then Di Cosmo [3] has produced a book on type isomorphisms. Unfortunately the implementations that accompanied the earlier works were for functional languages that have since become less popular.
I have given several presentations on type searching all available from my home page.
The folders in the repository, and their meaning are:
cbits - C implementation of the text search used by hoogle
docs - documention on hoogle
html - resources for hoogle's web front-end (html, css, javascript, images, etc.)
misc - scripts, logos, sample data, etc.
src - haskell source code
I was unaware of any similar tools before starting development, and no other tool has really influenced this tool (except the first on this list). Some related tools are:
All code is all © Neil Mitchell, 2004-present. The initial version was done over my summer holiday, and further work was done during my PhD. During Summer 2008 I was funded to full-time on Hoogle by Google Summer of Code with the haskell.org mentoring organisation. Since then I have been working on Hoogle in my spare time. Various people have given lots of useful ideas, including my PhD supervisor Colin Runciman, and various members of the Plasma group. In addition, the following people have also contributed code or significant debugging work:
In previous versions, all the data was taken from Zvon's Haskell Guide. Thanks to their open and friendly policy of allowing the data to be reused, this project became possible. More recent versions use the Hierarchical Libraries as distributed with GHC, and databases generated by Haddock.