Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
sqlite-simple Database.SQLite.Simple No documentation available.
peekMap :: (Store (ContainerKey t), Store (MapValue t), IsMap t) => Peek tstore Data.Store.Internal Implement peek for an IsMap of where both ContainerKey and MapValue are Store instances.
-
store Data.Store.Internal Decode the results of pokeOrdMap using a given function to construct the map.
pokeMap :: (Store (ContainerKey t), Store (MapValue t), IsMap t) => t -> Poke ()store Data.Store.Internal Implement poke for an IsMap of where both ContainerKey and MapValue are Store instances.
pokeOrdMap :: (Store (ContainerKey t), Store (MapValue t), IsMap t) => t -> Poke ()store Data.Store.Internal Like pokeMap but should only be used for ordered containers where mapToList returns an ascending list.
sizeMap :: (Store (ContainerKey t), Store (MapValue t), IsMap t) => Size tstore Data.Store.Internal Implement size for an IsMap of where both ContainerKey and MapValue are Store instances.
sizeOrdMap :: (Store (ContainerKey t), Store (MapValue t), IsMap t) => Size tstore Data.Store.Internal Like sizeMap but should only be used for ordered containers where mapToList returns an ascending list.
-
streaming-bytestring Streaming.ByteString Instead of mapping over each Word8 or Char, map over each strict ByteString chunk in the stream.
chunkMapM :: Monad m => (ByteString -> m ByteString) -> ByteStream m r -> ByteStream m rstreaming-bytestring Streaming.ByteString Like chunkMap, but map effectfully.
chunkMapM_ :: Monad m => (ByteString -> m x) -> ByteStream m r -> m rstreaming-bytestring Streaming.ByteString Like chunkMapM, but discard the result of each effectful mapping.