Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. anySingleBut :: MonadParsec e s m => Token s -> m (Token s)

    network-uri-template Network.URI.Template.Internal.Parse

    Match any token but the given one. It's a good idea to attach a label to this parser.

    anySingleBut t = satisfy (/= t)
    
    See also: single, anySingle, satisfy.

  2. anySingle :: RE c c

    parser-regex Regex.Base

    Parse any c.

  3. anySingle :: RE c c

    parser-regex Regex.Internal.Regex

    Parse any c.

  4. anyChar :: REText Char

    parser-regex Regex.Internal.Text

    Parse any Char.

  5. anySingle :: RE c c

    parser-regex Regex.List

    Parse any c.

  6. anyChar :: REText Char

    parser-regex Regex.Text

    Parse any Char.

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

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

  9. anyAction :: DL s ()

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

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

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

Page 87 of many | Previous | Next