Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
parser-regex Regex.List Parse any c.
-
parser-regex Regex.Text Parse any Char.
-
persistent-mongoDB Database.Persist.MongoDB same as anyEq, but give a BSON Value
-
persistent-mongoDB Database.Persist.MongoDB Like (==.) but for an embedded list. Checks to see if the list contains an item. In Haskell we need different equality functions for embedded fields that are lists or non-lists to keep things type-safe. using this as the only query filter is similar to the following in the mongoDB shell
db.Collection.find({arrayField: arrayItem}) -
quickcheck-dynamic Test.QuickCheck.DynamicLogic No documentation available.
-
quickcheck-dynamic Test.QuickCheck.DynamicLogic No documentation available.
-
quickcheck-dynamic Test.QuickCheck.DynamicLogic No documentation available.
anyTill :: Parser a -> Parser (ByteString, a)replace-attoparsec Replace.Attoparsec.ByteString Specialized manyTill_
Parser combinator to consume and capture input until the sep pattern matches, equivalent to manyTill_ anyWord8 sep. On success, returns the prefix before the pattern match and the parsed match. sep may be a zero-width parser, it may succeed without consuming any input. This combinator will produce a parser which acts like takeTill but is predicated beyond more than just the next one token. It is also like takeTill in that it is a “high performance” parser.anyTill :: Parser a -> Parser (Text, a)replace-attoparsec Replace.Attoparsec.Text Specialized manyTill_
Parser combinator to consume and capture input until the sep pattern matches, equivalent to manyTill_ anyChar sep. On success, returns the prefix before the pattern match and the parsed match. sep may be a zero-width parser, it may succeed without consuming any input. This combinator will produce a parser which acts like takeTill but is predicated beyond more than just the next one token. It is also like takeTill in that it is a “high performance” parser.anyTill :: Parser a -> Parser (Text, a)replace-attoparsec Replace.Attoparsec.Text.Lazy Specialized manyTill_
Parser combinator to consume and capture input until the sep pattern matches, equivalent to manyTill_ anyChar sep. On success, returns the prefix before the pattern match and the parsed match. sep may be a zero-width parser, it may succeed without consuming any input. This combinator will produce a parser which acts like takeTill but is predicated beyond more than just the next one token. It is also like takeTill in that it is a “high performance” parser.Laziness
When the anyTill parser reaches the end of the current input chunk before finding the beginning of sep then the parser will fail. When the anyTill parser reaches the end of the current input chunk while it is successfully parsing sep then it will lazily fetch more input and continue parsing.