I'd like to use Data.HashSet in Haskell. So I put import Data.HashSet at the beginning of my program. GHCi complains: Could not find module Data.HashSet.
My questions are:
- How can I get Data.HashSet to work?
- I've read somewhere that this is part of a hidden module or package. Why is the module hidden? Does "hidden" mean that I should not use it?
- If I should not use it, is there a better alternative for a haskell data structure with a near-constant lookup time?

