$"     -Combinators that work with any sequence type.(c) PaweB NowakMIT PaweB Nowak <pawel834@gmail.com> experimentalNoneZero or more occurences of v separated by s.One or more occurences of v separated by s.One or none occurences of f.Like , but specialized for ().!Parser one or more occurences of f, but prints nothing.Abstract syntax description.(c) PaweB NowakMIT PaweB Nowak <pawel834@gmail.com> experimentalNone1368 :An abstract syntax description based on semi-isomorphisms.MThis class can be implemented by both parsers and printers (and maybe more?).The usual use is to write a polymorphic syntax description and instantiate it both as a parser and a printer. An example is available in the 'syntax-example' package.#Methods of this class try to mimic Data.Attoparsec.Text interface.Any character.A specific character.#Any character except the given one. %Any character satisfying a predicate. \Transforms a character using a SemiIso and filters out values not satisfying the predicate. A specific string. A string of length n. 2Maximal string which elements satisfy a predicate.<Maximal non-empty string which elements satisfy a predicate.9Maximal string which elements do not satisfy a predicate.CMaximal non-empty string which elements do not satisfy a predicate.=An isomorphism between a sequence and a list of its elements.        Char specific combinators.(c) PaweB NowakMIT PaweB Nowak <pawel834@gmail.com> experimentalNone6=K*Syntax constrainted to sequences of chars.Note: methods of this class do not have default implementations (for now), because their code is quite ugly and already written in most parser libraries.An unsigned decimal number.A scientific number."A number with an optional leading  or  sign character.6Accepts zero or more spaces. Generates a single space.1Accepts zero or more spaces. Generates no output.5Accepts one or more spaces. Generates a single space..Accepts a single newline. Generates a newline.      !"syntax-0.2.0.0Data.Syntax.Combinator Data.SyntaxData.Syntax.CharsepBysepBy1optionaloptopt_SyntaxanyCharcharnotCharsatisfy satisfyWithstringtake takeWhile takeWhile1takeTill takeTill1packed SyntaxChardecimal scientificsignedspacesspaces_spaces1 endOfLinebaseGHC.Num+-