Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. anyChar :: REText Char

    parser-regex Regex.Internal.Text

    Parse any Char.

  2. anySingle :: RE c c

    parser-regex Regex.List

    Parse any c.

  3. anyChar :: REText Char

    parser-regex Regex.Text

    Parse any Char.

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

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

  6. anyAction :: DL s ()

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

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

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

  8. anyActions_ :: DL s ()

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

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

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

Page 86 of many | Previous | Next