| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Text.Tokenify.CharSeq
Description
An abstaction over string like data types to prevent
restricting tokenizer to a particular
data type, as there are many string types in haskell.
Documentation
class (Monoid a, Eq a) => CharSeq a where Source
This typeclass is designed to make the tokenizer more polymorphic,
which is why it's a super set of both Monoid and Eq.