Module

Type.Regex.RegexRep

Package
purescript-typelevel-regex
Repository
thought2/purescript-typelevel-regex

#Regex Source

data Regex

#Nil Source

data Nil :: Regexdata Nil

#EndOfStr Source

data EndOfStr :: Regexdata EndOfStr

#StartOfStr Source

#Wildcard Source

data Wildcard :: Regexdata Wildcard

#Lit Source

data Lit :: Char' -> Regexdata Lit t0

#NotLits Source

data NotLits :: Symbol -> Regexdata NotLits t0

#Lits Source

data Lits :: Symbol -> Regexdata Lits t0

#Many Source

data Many :: Regex -> Regexdata Many t0

#Cat Source

data Cat :: Regex -> Regex -> Regexdata Cat t0 t1

#Alt Source

data Alt :: Regex -> Regex -> Regexdata Alt t0 t1

#type (~) Source

Operator alias for Type.Regex.RegexRep.Cat (right-associative / precedence 6)