{-# LANGUAGE CPP #-} -------------------------------------------------------------------- -- | -- Copyright : (c) Edward Kmett 2013-2015 -- License : BSD3 -- Maintainer: Edward Kmett -- Stability : experimental -- Portability: non-portable -- -- See the original paper for details: -- -------------------------------------------------------------------- module Data.HyperLogLog ( -- * HyperLogLog HyperLogLog , HasHyperLogLog(..) , size , intersectionSize , insert , insertHash , cast #if __GLASGOW_HASKELL__ >= 708 , coerceConfig #endif ) where import Data.HyperLogLog.Type