Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ptr Ptr.Peek No documentation available.
Peek :: Int -> !Ptr Word8 -> IO output -> Peek outputptr Ptr.Peek No documentation available.
-
No documentation available.
-
ptr Ptr.Poke Specification of a sized and errorless writing action to a pointer.
Poke :: Int -> !Ptr Word8 -> input -> IO () -> Poke inputptr Ptr.Poke No documentation available.
-
No documentation available.
-
ptr Ptr.PokeAndPeek Encoder and decoder of the same binary representation. You can compose both the covariant and contravariant parameters of PokeAndPeek using Applicative and Profunctor. E.g.,
word8AndWord32 :: PokeAndPeek (Word8, Word32) (Word8, Word32) word8AndWord32 = (,) <$> lmap fst word8 <*> lmap snd beWord32
-
ptr Ptr.PokeAndPeek No documentation available.
-
No documentation available.
-
ptr Ptr.Poking An efficiently composable unmaterialised specification of how to populate a pointer. Once composed it can be materialized into a specific data-structure like ByteString or to directly populate a pointer in some low-level API.