Module
TLDR.Sugar
- Package
- purescript-tldr
- Repository
- mikesol/purescript-tldr
#WS Source
type WS a = IgnoreAndThenParse (Many MatchWhitespace) (ParseAndThenIgnore a (Many MatchWhitespace))#WSM Source
type WSM a = And (Many MatchWhitespace) (And a (Many MatchWhitespace))#DQ Source
type DQ a = IgnoreAndThenParse (Literal "\"") (ParseAndThenIgnore a (Literal "\""))#Bracket Source
type Bracket a b c = IgnoreAndThenParse a (ParseAndThenIgnore b c)#L10 Source
type L10 :: Symbol -> Symbol -> Symbol -> Symbol -> Symbol -> Symbol -> Symbol -> Symbol -> Symbol -> Symbol -> Typetype L10 a b c d e f g h i j = And (Literal a) (And (Literal b) (And (Literal c) (And (Literal d) (And (Literal e) (And (Literal f) (And (Literal g) (And (Literal h) (And (Literal i) (Literal j)))))))))
- Modules
- TLDR.
Combinators - TLDR.
Combinators. Class - TLDR.
List - TLDR.
Matchers - TLDR.
Matchers. Class - TLDR.
Matchers. Match09 - TLDR.
Matchers. MatchAlpha - TLDR.
Matchers. MatchAlphanumeric - TLDR.
Matchers. MatchHex - TLDR.
Matchers. MatchLaz - TLDR.
Matchers. MatchLaz09 - TLDR.
Matchers. MatchUaz - TLDR.
Matchers. MatchUaz09 - TLDR.
Matchers. MatchWhitespace - TLDR.
Matchers. Show - TLDR.
Result - TLDR.
Sugar