Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. incOffset :: Position -> Int -> Position

    language-c Language.C.Data.Position

    advance just the offset

  2. posOffset :: Position -> Int

    language-c Language.C.Data.Position

    absolute offset in the preprocessed file

  3. type IsSubset (as :: [k]) = TyPred Subset as

    list-witnesses Data.Type.List.Sublist

    A type-level predicate that a given list is a "superset" of as, in correct order

  4. data Subset (a :: [k]) (b :: [k])

    list-witnesses Data.Type.List.Sublist

    A Subset as bs witnesses that as is some subset of bs, with items in the same order. It is constructed by specifying what item to include or exclude in bs from as. It is essentially Interleave, but without one of the two initial parameters. You construct an Subset from cs by picking "which item" from bs to add to as. Some examples:

    SubsetNo  (SubsetNo  (SubsetNo  SubsetNil)) :: Subset '[]      '[1,2,3]
    SubsetYes (SubsetNo  (SubsetNo  SubsetNil)) :: Subset '[1]     '[1,2,3]
    SubsetNo  (SubsetNo  (SubsetYes SubsetNil)) :: Subset '[3]     '[1,2,3]
    SubsetYes (SubsetNo  (SubsetYes SubsetNil)) :: Subset '[1,3]   '[1,2,3]
    SubsetYes (SubsetYes (SubsetYes SubsetNil)) :: Subset '[1,2,3] '[1,2,3]
    

  5. MDB_SET :: MDB_cursor_op

    lmdb Database.LMDB.Raw

    No documentation available.

  6. MDB_SET_KEY :: MDB_cursor_op

    lmdb Database.LMDB.Raw

    No documentation available.

  7. MDB_SET_RANGE :: MDB_cursor_op

    lmdb Database.LMDB.Raw

    No documentation available.

  8. mdb_env_set_flags :: MDB_env -> [MDB_EnvFlag] -> IO ()

    lmdb Database.LMDB.Raw

    Set flags for the environment.

  9. mdb_env_set_mapsize :: MDB_env -> Int -> IO ()

    lmdb Database.LMDB.Raw

    Set the memory map size, in bytes, for this environment. This determines the maximum size for the environment and databases, but typically only a small fraction of the database is in memory at any given moment. It is not a problem to set this to a very large number, hundreds of gigabytes or even terabytes, assuming a sufficiently large address space. It should be set to a multiple of page size. The default map size is 1MB, intentionally set low to force developers to select something larger.

  10. mdb_env_set_maxdbs :: MDB_env -> Int -> IO ()

    lmdb Database.LMDB.Raw

    Set the maximum number of named databases. LMDB is designed to support a small handful of databases.

Page 249 of many | Previous | Next