-------------------------------------------------------------------- -- | -- Copyright : (c) Edward Kmett 2013 -- License : BSD3 -- Maintainer: Edward Kmett -- Stability : experimental -- Portability: non-portable -- -- See the original paper for details: -- -------------------------------------------------------------------- module Data.HyperLogLog ( -- * HyperLogLog HyperLogLog , HasHyperLogLog(..) , size , intersectionSize , cast -- * Config , Config , hll -- * ReifiesConfig , ReifiesConfig , reifyConfig ) where import Data.HyperLogLog.Config import Data.HyperLogLog.Type