packages feed

dawg-0.9: Data/DAWG/Types.hs

-- | Basic types used throughout the library.

module Data.DAWG.Types
( ID
, Sym
) where

-- | Node identifier.
type ID = Int

-- | Internal representation of an alphabet element.
type Sym = Int