{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 702
{-# LANGUAGE Trustworthy #-}
#endif
module Data.HashMap.Lazy
(
HashMap
, empty
, singleton
, HM.null
, size
, member
, HM.lookup
, lookupDefault
, (!)
, insert
, insertWith
, delete
, adjust
, union
, unionWith
, unions
, HM.map
, mapWithKey
, traverseWithKey
, difference
, intersection
, intersectionWith
, foldl'
, foldlWithKey'
, HM.foldr
, foldrWithKey
, HM.filter
, filterWithKey
, keys
, elems
, toList
, fromList
, fromListWith
) where
import Data.HashMap.Base as HM