gll-0.4.0.13: src/GLL/Parseable/Char.hs
-- | Exports an instance for 'Parseable' 'Char'
-- that assumes '$' and '#' never appear in the input string.
module GLL.Parseable.Char () where
import GLL.Types.Grammar
-- | Assumes '$' and '#' never appear in the input string.
instance Parseable Char where
eos = '$'
eps = '#'
matches = (==)