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.

  1. anySingle :: RE c c

    parser-regex Regex.List

    Parse any c.

  2. anyChar :: REText Char

    parser-regex Regex.Text

    Parse any Char.

  3. anyBsonEq :: forall record typ . (PersistField typ, PersistEntityBackend record ~ MongoContext) => EntityField record [typ] -> Value -> Filter record

    persistent-mongoDB Database.Persist.MongoDB

    same as anyEq, but give a BSON Value

  4. anyEq :: forall record typ . (PersistField typ, PersistEntityBackend record ~ MongoContext) => EntityField record [typ] -> typ -> Filter record

    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})
    

  5. anyAction :: DL s ()

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

  6. anyActions :: Int -> DL s ()

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

  7. anyActions_ :: DL s ()

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

  8. 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.

  9. 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.

  10. 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.

Page 86 of many | Previous | Next