data-stringmap-0.9: Data/StringMap/Types.hs
{-# OPTIONS #-}
-- ----------------------------------------------------------------------------
{- |
Module : Data.StringMap.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 StringMap modules
-}
-- ----------------------------------------------------------------------------
module Data.StringMap.Types
where
type Sym = Char
type Key = [Sym]
-- ----------------------------------------------------------------------------