Holumbus-Searchengine-1.2.0: src/Holumbus/Data/PrefixTree/Types.hs
{-# OPTIONS #-}
-- ----------------------------------------------------------------------------
{- |
Module : Holumbus.Data.PrefixTree.Types
Copyright : Copyright (C) 2009-2012 Uwe Schmidt
License : MIT
Maintainer : Uwe Schmidt (uwe@fh-wedel.de)
Stability : experimental
Portability: portable
Data types used in all PrefixTree modules
-}
-- ----------------------------------------------------------------------------
module Holumbus.Data.PrefixTree.Types
where
type Sym = Char
type Key = [Sym]
-- ----------------------------------------------------------------------------