Hoogle Search

Within LTS Haskell 24.57 (ghc-9.10.3)

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

  1. isOsmanya :: Char -> Bool

    hxt-charproperties Data.Char.Properties.UnicodeBlocks

    No documentation available.

  2. decompressTellAnyCheck :: DecompressParams -> Bool

    lzma Codec.Compression.Lzma

    DecompressParams field: If set, abort (via LzmaRetGetCheck) as soon as the type of the integrity check has been detected.

  3. chooseAny :: Random a => Gen a

    massiv-test Test.Massiv.Utils

    Generates a random element over the natural range of a.

  4. deleteMany :: forall (m :: Type -> Type) . MonadIO m => Collection -> [(Selector, [DeleteOption])] -> Action m WriteResult

    mongoDB Database.MongoDB.Query

    Bulk delete operation. If one delete fails it will not delete the remaining documents. Current returned value is only a place holder. With mongodb server before 2.6 it will send delete requests one by one. After 2.6 it will use bulk delete feature in mongodb.

  5. insertMany :: forall (m :: Type -> Type) . MonadIO m => Collection -> [Document] -> Action m [Value]

    mongoDB Database.MongoDB.Query

    Insert documents into collection and return their "_id" values, which are created automatically if not supplied. If a document fails to be inserted (eg. due to duplicate key) then remaining docs are aborted, and LastError is set. An exception will be throw if any error occurs.

  6. insertMany_ :: forall (m :: Type -> Type) . MonadIO m => Collection -> [Document] -> Action m ()

    mongoDB Database.MongoDB.Query

    Same as insertMany except don't return _ids

  7. updateMany :: forall (m :: Type -> Type) . MonadIO m => Collection -> [(Selector, Document, [UpdateOption])] -> Action m WriteResult

    mongoDB Database.MongoDB.Query

    Bulk update operation. If one update fails it will not update the remaining documents. Current returned value is only a place holder. With mongodb server before 2.6 it will send update requests one by one. In order to receive error messages in versions under 2.6 you need to user confirmed writes. Otherwise even if the errors had place the list of errors will be empty and the result will be success. After 2.6 it will use bulk update feature in mongodb.

  8. executeMany :: QueryParams q => Connection -> Query -> [q] -> IO Int64

    mysql-simple Database.MySQL.Simple

    Execute a multi-row INSERT, UPDATE, or other SQL query that is not expected to return results. Returns the number of rows affected. Throws FormatError if the query could not be formatted correctly.

  9. formatMany :: QueryParams q => Connection -> Query -> [q] -> IO ByteString

    mysql-simple Database.MySQL.Simple

    Format a query string with a variable number of rows. This function is exposed to help with debugging and logging. Do not use it to prepare queries for execution. The query string must contain exactly one substitution group, identified by the SQL keyword "VALUES" (case insensitive) followed by an "(" character, a series of one or more "?" characters separated by commas, and a ")" character. White space in a substitution group is permitted. Throws FormatError if the query string could not be formatted correctly.

  10. Many :: [Action] -> Action

    mysql-simple Database.MySQL.Simple.Param

    Concatenate a series of rendering actions.

Page 173 of many | Previous | Next