{-# OPTIONS #-} -- ---------------------------------------------------------------------------- {- | Module : Data.StringMap.Types Copyright : Copyright (C) 2009-2014 Uwe Schmidt License : MIT Maintainer : Uwe Schmidt ([email protected]) Stability : experimental Portability: portable Data types used in all StringMap modules -} -- ---------------------------------------------------------------------------- module Data.StringMap.Types where type Sym = Char type Key = [Sym] -- ----------------------------------------------------------------------------