{-# OPTIONS_GHC -fglasgow-exts -fallow-undecidable-instances -fno-warn-orphans #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Trie.General -- Copyright : (c) Adrian Hey 2007 -- License : BSD3 -- -- Maintainer : http://homepages.nildram.co.uk/~ahey/em.png -- Stability : provisional -- Portability : Multi-parameter type classes, Functional dependencies -- -- ToDo: Write something sensible here ----------------------------------------------------------------------------- module Data.Trie.General (module Data.Trie.General.Types ,OrdGT ,IntGT ,ListGT ,BoolGT ,MaybeGT ,EitherGT ,UnitGT ) where import Data.Trie.General.Types import Data.Trie.General.OrdGT(OrdGT) import Data.Trie.General.IntGT(IntGT) import Data.Trie.General.ListGT(ListGT) import Data.Trie.General.BoolGT(BoolGT) import Data.Trie.General.MaybeGT(MaybeGT) import Data.Trie.General.EitherGT(EitherGT) import Data.Trie.General.UnitGT(UnitGT)