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.
incOffset :: Position -> Int -> Positionlanguage-c Language.C.Data.Position advance just the offset
-
language-c Language.C.Data.Position absolute offset in the preprocessed file
type
IsSubset (as :: [k]) = TyPred Subset aslist-witnesses Data.Type.List.Sublist A type-level predicate that a given list is a "superset" of as, in correct order
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]
-
lmdb Database.LMDB.Raw No documentation available.
-
lmdb Database.LMDB.Raw No documentation available.
MDB_SET_RANGE :: MDB_cursor_oplmdb Database.LMDB.Raw No documentation available.
mdb_env_set_flags :: MDB_env -> [MDB_EnvFlag] -> IO ()lmdb Database.LMDB.Raw Set flags for the environment.
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.
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.