list-tries-0.0: Data/ListTrie/Patricia/Set/Enum.hs
-- File created: 2008-10-22 20:44:46
-- | A set of lists of enumerable elements, based on a Patricia trie.
--
-- Note that those operations which require an ordering, such as 'toAscList',
-- do not compare the elements themselves, but rather their 'Int'
-- representation after 'fromEnum'.
module Data.ListTrie.Patricia.Set.Enum ( TrieSet
, module Data.ListTrie.Patricia.Set
) where
import Data.ListTrie.Base.Map (WrappedIntMap)
import Data.ListTrie.Patricia.Set hiding (TrieSet)
import qualified Data.ListTrie.Patricia.Set as Base
type TrieSet = Base.TrieSet WrappedIntMap