First time doing haskell immediate impressions
@edgarogh Yeah, operators are pretty unsearchable.
However there's an index for many kinds of #Haskell stuff you may be interested in.
Search operators: https://hoogle.haskell.org/?hoogle=%28%26%29&scope=set%3Astackage
Search by name: https://hoogle.haskell.org/?hoogle=Semigroupoid
Search by type (!): https://hoogle.haskell.org/?hoogle=Maybe%20a%20-%3E%20%5Ba%5D
(Bonus) Find packages: https://hackage.haskell.org/packages/search?terms=containers
First time doing haskell immediate impressions
@edgarogh Another thing that helped me was using hlint. Not necessarily for discovering new things, rather improving my style
First time doing haskell immediate impressions
@dpwiz @edgarogh Yeah, searching by type seems strange at first but that's really something you use every day (once you get the knack of it)