Copyright | (c) The FFI task force 2001 |
---|---|
License | see libraries/base/LICENSE |
Maintainer | ffi@haskell.org |
Stability | provisional |
Portability | portable |
Safe Haskell | Trustworthy |
Language | Haskell2010 |
Foreign.Storable
Description
The module Foreign.Storable provides most elementary support for marshalling and is part of the language-independent portion of the Foreign Function Interface (FFI), and will normally be imported via the Foreign module.
Documentation
class Storable a where Source #
The member functions of this class facilitate writing values of primitive types to raw memory (which may have been allocated with the above mentioned routines) and reading values from blocks of raw memory. The class, furthermore, includes support for computing the storage requirements and alignment restrictions of storable types.
Memory addresses are represented as values of type
, for some
Ptr
aa
which is an instance of class Storable
. The type argument to
Ptr
helps provide some valuable type safety in FFI code (you can't
mix pointers of different types without an explicit cast), while
helping the Haskell type system figure out which marshalling method is
needed for a given pointer.
All marshalling between Haskell and a foreign language ultimately
boils down to translating Haskell data structures into the binary
representation of a corresponding data structure of the foreign
language and vice versa. To code this marshalling in Haskell, it is
necessary to manipulate primitive data types stored in unstructured
memory blocks. The class Storable
facilitates this manipulation on
all types for which it is instantiated, which are the standard basic
types of Haskell, the fixed size Int
types (Int8
, Int16
,
Int32
, Int64
), the fixed size Word
types (Word8
, Word16
,
Word32
, Word64
), StablePtr
, all types from Foreign.C.Types,
as well as Ptr
.
Minimal complete definition
sizeOf, alignment, (peek | peekElemOff | peekByteOff), (poke | pokeElemOff | pokeByteOff)
Methods
Computes the storage requirements (in bytes) of the argument. The value of the argument is not used.
alignment :: a -> Int Source #
Computes the alignment constraint of the argument. An
alignment constraint x
is fulfilled by any address divisible
by x
. The value of the argument is not used.
peekElemOff :: Ptr a -> Int -> IO a Source #
Read a value from a memory area regarded as an array
of values of the same kind. The first argument specifies
the start address of the array and the second the index into
the array (the first element of the array has index
0
). The following equality holds,
peekElemOff addr idx = IOExts.fixIO $ \result -> peek (addr `plusPtr` (idx * sizeOf result))
Note that this is only a specification, not necessarily the concrete implementation of the function.
pokeElemOff :: Ptr a -> Int -> a -> IO () Source #
Write a value to a memory area regarded as an array of values of the same kind. The following equality holds:
pokeElemOff addr idx x = poke (addr `plusPtr` (idx * sizeOf x)) x
peekByteOff :: Ptr b -> Int -> IO a Source #
Read a value from a memory location given by a base address and offset. The following equality holds:
peekByteOff addr off = peek (addr `plusPtr` off)
pokeByteOff :: Ptr b -> Int -> a -> IO () Source #
Write a value to a memory location given by a base address and offset. The following equality holds:
pokeByteOff addr off x = poke (addr `plusPtr` off) x
peek :: Ptr a -> IO a Source #
Read a value from the given memory location.
Note that the peek and poke functions might require properly
aligned addresses to function correctly. This is architecture
dependent; thus, portable code should ensure that when peeking or
poking values of some type a
, the alignment
constraint for a
, as given by the function
alignment
is fulfilled.
poke :: Ptr a -> a -> IO () Source #
Write the given value to the given memory location. Alignment
restrictions might apply; see peek
.
Instances
Instances details
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Bool -> Int Source #
alignment :: Bool -> Int Source #
peekElemOff :: Ptr Bool -> Int -> IO Bool Source #
pokeElemOff :: Ptr Bool -> Int -> Bool -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Bool Source #
pokeByteOff :: Ptr b -> Int -> Bool -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Char -> Int Source #
alignment :: Char -> Int Source #
peekElemOff :: Ptr Char -> Int -> IO Char Source #
pokeElemOff :: Ptr Char -> Int -> Char -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Char Source #
pokeByteOff :: Ptr b -> Int -> Char -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Double -> Int Source #
alignment :: Double -> Int Source #
peekElemOff :: Ptr Double -> Int -> IO Double Source #
pokeElemOff :: Ptr Double -> Int -> Double -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Double Source #
pokeByteOff :: Ptr b -> Int -> Double -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Float -> Int Source #
alignment :: Float -> Int Source #
peekElemOff :: Ptr Float -> Int -> IO Float Source #
pokeElemOff :: Ptr Float -> Int -> Float -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Float Source #
pokeByteOff :: Ptr b -> Int -> Float -> IO () Source #
Instance details
Defined in Foreign.Storable
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Int8 -> Int Source #
alignment :: Int8 -> Int Source #
peekElemOff :: Ptr Int8 -> Int -> IO Int8 Source #
pokeElemOff :: Ptr Int8 -> Int -> Int8 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Int8 Source #
pokeByteOff :: Ptr b -> Int -> Int8 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Int16 -> Int Source #
alignment :: Int16 -> Int Source #
peekElemOff :: Ptr Int16 -> Int -> IO Int16 Source #
pokeElemOff :: Ptr Int16 -> Int -> Int16 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Int16 Source #
pokeByteOff :: Ptr b -> Int -> Int16 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Int32 -> Int Source #
alignment :: Int32 -> Int Source #
peekElemOff :: Ptr Int32 -> Int -> IO Int32 Source #
pokeElemOff :: Ptr Int32 -> Int -> Int32 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Int32 Source #
pokeByteOff :: Ptr b -> Int -> Int32 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Int64 -> Int Source #
alignment :: Int64 -> Int Source #
peekElemOff :: Ptr Int64 -> Int -> IO Int64 Source #
pokeElemOff :: Ptr Int64 -> Int -> Int64 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Int64 Source #
pokeByteOff :: Ptr b -> Int -> Int64 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Word -> Int Source #
alignment :: Word -> Int Source #
peekElemOff :: Ptr Word -> Int -> IO Word Source #
pokeElemOff :: Ptr Word -> Int -> Word -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Word Source #
pokeByteOff :: Ptr b -> Int -> Word -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Word8 -> Int Source #
alignment :: Word8 -> Int Source #
peekElemOff :: Ptr Word8 -> Int -> IO Word8 Source #
pokeElemOff :: Ptr Word8 -> Int -> Word8 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Word8 Source #
pokeByteOff :: Ptr b -> Int -> Word8 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Word16 -> Int Source #
alignment :: Word16 -> Int Source #
peekElemOff :: Ptr Word16 -> Int -> IO Word16 Source #
pokeElemOff :: Ptr Word16 -> Int -> Word16 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Word16 Source #
pokeByteOff :: Ptr b -> Int -> Word16 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Word32 -> Int Source #
alignment :: Word32 -> Int Source #
peekElemOff :: Ptr Word32 -> Int -> IO Word32 Source #
pokeElemOff :: Ptr Word32 -> Int -> Word32 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Word32 Source #
pokeByteOff :: Ptr b -> Int -> Word32 -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Word64 -> Int Source #
alignment :: Word64 -> Int Source #
peekElemOff :: Ptr Word64 -> Int -> IO Word64 Source #
pokeElemOff :: Ptr Word64 -> Int -> Word64 -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Word64 Source #
pokeByteOff :: Ptr b -> Int -> Word64 -> IO () Source #
Instance details
Defined in Foreign.Storable
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Fingerprint -> Int Source #
alignment :: Fingerprint -> Int Source #
peekElemOff :: Ptr Fingerprint -> Int -> IO Fingerprint Source #
pokeElemOff :: Ptr Fingerprint -> Int -> Fingerprint -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO Fingerprint Source #
pokeByteOff :: Ptr b -> Int -> Fingerprint -> IO () Source #
peek :: Ptr Fingerprint -> IO Fingerprint Source #
poke :: Ptr Fingerprint -> Fingerprint -> IO () Source #
Instance details
Defined in Foreign.Ptr
Methods
sizeOf :: IntPtr -> Int Source #
alignment :: IntPtr -> Int Source #
peekElemOff :: Ptr IntPtr -> Int -> IO IntPtr Source #
pokeElemOff :: Ptr IntPtr -> Int -> IntPtr -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO IntPtr Source #
pokeByteOff :: Ptr b -> Int -> IntPtr -> IO () Source #
Instance details
Defined in Foreign.Ptr
Methods
sizeOf :: WordPtr -> Int Source #
alignment :: WordPtr -> Int Source #
peekElemOff :: Ptr WordPtr -> Int -> IO WordPtr Source #
pokeElemOff :: Ptr WordPtr -> Int -> WordPtr -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO WordPtr Source #
pokeByteOff :: Ptr b -> Int -> WordPtr -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CUIntMax -> Int Source #
alignment :: CUIntMax -> Int Source #
peekElemOff :: Ptr CUIntMax -> Int -> IO CUIntMax Source #
pokeElemOff :: Ptr CUIntMax -> Int -> CUIntMax -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUIntMax Source #
pokeByteOff :: Ptr b -> Int -> CUIntMax -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CIntMax -> Int Source #
alignment :: CIntMax -> Int Source #
peekElemOff :: Ptr CIntMax -> Int -> IO CIntMax Source #
pokeElemOff :: Ptr CIntMax -> Int -> CIntMax -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CIntMax Source #
pokeByteOff :: Ptr b -> Int -> CIntMax -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CUIntPtr -> Int Source #
alignment :: CUIntPtr -> Int Source #
peekElemOff :: Ptr CUIntPtr -> Int -> IO CUIntPtr Source #
pokeElemOff :: Ptr CUIntPtr -> Int -> CUIntPtr -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUIntPtr Source #
pokeByteOff :: Ptr b -> Int -> CUIntPtr -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CIntPtr -> Int Source #
alignment :: CIntPtr -> Int Source #
peekElemOff :: Ptr CIntPtr -> Int -> IO CIntPtr Source #
pokeElemOff :: Ptr CIntPtr -> Int -> CIntPtr -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CIntPtr Source #
pokeByteOff :: Ptr b -> Int -> CIntPtr -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CSUSeconds -> Int Source #
alignment :: CSUSeconds -> Int Source #
peekElemOff :: Ptr CSUSeconds -> Int -> IO CSUSeconds Source #
pokeElemOff :: Ptr CSUSeconds -> Int -> CSUSeconds -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSUSeconds Source #
pokeByteOff :: Ptr b -> Int -> CSUSeconds -> IO () Source #
peek :: Ptr CSUSeconds -> IO CSUSeconds Source #
poke :: Ptr CSUSeconds -> CSUSeconds -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CUSeconds -> Int Source #
alignment :: CUSeconds -> Int Source #
peekElemOff :: Ptr CUSeconds -> Int -> IO CUSeconds Source #
pokeElemOff :: Ptr CUSeconds -> Int -> CUSeconds -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUSeconds Source #
pokeByteOff :: Ptr b -> Int -> CUSeconds -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CTime -> Int Source #
alignment :: CTime -> Int Source #
peekElemOff :: Ptr CTime -> Int -> IO CTime Source #
pokeElemOff :: Ptr CTime -> Int -> CTime -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CTime Source #
pokeByteOff :: Ptr b -> Int -> CTime -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CClock -> Int Source #
alignment :: CClock -> Int Source #
peekElemOff :: Ptr CClock -> Int -> IO CClock Source #
pokeElemOff :: Ptr CClock -> Int -> CClock -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CClock Source #
pokeByteOff :: Ptr b -> Int -> CClock -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CSigAtomic -> Int Source #
alignment :: CSigAtomic -> Int Source #
peekElemOff :: Ptr CSigAtomic -> Int -> IO CSigAtomic Source #
pokeElemOff :: Ptr CSigAtomic -> Int -> CSigAtomic -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSigAtomic Source #
pokeByteOff :: Ptr b -> Int -> CSigAtomic -> IO () Source #
peek :: Ptr CSigAtomic -> IO CSigAtomic Source #
poke :: Ptr CSigAtomic -> CSigAtomic -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CWchar -> Int Source #
alignment :: CWchar -> Int Source #
peekElemOff :: Ptr CWchar -> Int -> IO CWchar Source #
pokeElemOff :: Ptr CWchar -> Int -> CWchar -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CWchar Source #
pokeByteOff :: Ptr b -> Int -> CWchar -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CSize -> Int Source #
alignment :: CSize -> Int Source #
peekElemOff :: Ptr CSize -> Int -> IO CSize Source #
pokeElemOff :: Ptr CSize -> Int -> CSize -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSize Source #
pokeByteOff :: Ptr b -> Int -> CSize -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CPtrdiff -> Int Source #
alignment :: CPtrdiff -> Int Source #
peekElemOff :: Ptr CPtrdiff -> Int -> IO CPtrdiff Source #
pokeElemOff :: Ptr CPtrdiff -> Int -> CPtrdiff -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CPtrdiff Source #
pokeByteOff :: Ptr b -> Int -> CPtrdiff -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CDouble -> Int Source #
alignment :: CDouble -> Int Source #
peekElemOff :: Ptr CDouble -> Int -> IO CDouble Source #
pokeElemOff :: Ptr CDouble -> Int -> CDouble -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CDouble Source #
pokeByteOff :: Ptr b -> Int -> CDouble -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CFloat -> Int Source #
alignment :: CFloat -> Int Source #
peekElemOff :: Ptr CFloat -> Int -> IO CFloat Source #
pokeElemOff :: Ptr CFloat -> Int -> CFloat -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CFloat Source #
pokeByteOff :: Ptr b -> Int -> CFloat -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CBool -> Int Source #
alignment :: CBool -> Int Source #
peekElemOff :: Ptr CBool -> Int -> IO CBool Source #
pokeElemOff :: Ptr CBool -> Int -> CBool -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CBool Source #
pokeByteOff :: Ptr b -> Int -> CBool -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CULLong -> Int Source #
alignment :: CULLong -> Int Source #
peekElemOff :: Ptr CULLong -> Int -> IO CULLong Source #
pokeElemOff :: Ptr CULLong -> Int -> CULLong -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CULLong Source #
pokeByteOff :: Ptr b -> Int -> CULLong -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CLLong -> Int Source #
alignment :: CLLong -> Int Source #
peekElemOff :: Ptr CLLong -> Int -> IO CLLong Source #
pokeElemOff :: Ptr CLLong -> Int -> CLLong -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CLLong Source #
pokeByteOff :: Ptr b -> Int -> CLLong -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CULong -> Int Source #
alignment :: CULong -> Int Source #
peekElemOff :: Ptr CULong -> Int -> IO CULong Source #
pokeElemOff :: Ptr CULong -> Int -> CULong -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CULong Source #
pokeByteOff :: Ptr b -> Int -> CULong -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CLong -> Int Source #
alignment :: CLong -> Int Source #
peekElemOff :: Ptr CLong -> Int -> IO CLong Source #
pokeElemOff :: Ptr CLong -> Int -> CLong -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CLong Source #
pokeByteOff :: Ptr b -> Int -> CLong -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CUInt -> Int Source #
alignment :: CUInt -> Int Source #
peekElemOff :: Ptr CUInt -> Int -> IO CUInt Source #
pokeElemOff :: Ptr CUInt -> Int -> CUInt -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUInt Source #
pokeByteOff :: Ptr b -> Int -> CUInt -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CInt -> Int Source #
alignment :: CInt -> Int Source #
peekElemOff :: Ptr CInt -> Int -> IO CInt Source #
pokeElemOff :: Ptr CInt -> Int -> CInt -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CInt Source #
pokeByteOff :: Ptr b -> Int -> CInt -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CUShort -> Int Source #
alignment :: CUShort -> Int Source #
peekElemOff :: Ptr CUShort -> Int -> IO CUShort Source #
pokeElemOff :: Ptr CUShort -> Int -> CUShort -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUShort Source #
pokeByteOff :: Ptr b -> Int -> CUShort -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CShort -> Int Source #
alignment :: CShort -> Int Source #
peekElemOff :: Ptr CShort -> Int -> IO CShort Source #
pokeElemOff :: Ptr CShort -> Int -> CShort -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CShort Source #
pokeByteOff :: Ptr b -> Int -> CShort -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CUChar -> Int Source #
alignment :: CUChar -> Int Source #
peekElemOff :: Ptr CUChar -> Int -> IO CUChar Source #
pokeElemOff :: Ptr CUChar -> Int -> CUChar -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUChar Source #
pokeByteOff :: Ptr b -> Int -> CUChar -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CSChar -> Int Source #
alignment :: CSChar -> Int Source #
peekElemOff :: Ptr CSChar -> Int -> IO CSChar Source #
pokeElemOff :: Ptr CSChar -> Int -> CSChar -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSChar Source #
pokeByteOff :: Ptr b -> Int -> CSChar -> IO () Source #
Instance details
Defined in Foreign.C.Types
Methods
sizeOf :: CChar -> Int Source #
alignment :: CChar -> Int Source #
peekElemOff :: Ptr CChar -> Int -> IO CChar Source #
pokeElemOff :: Ptr CChar -> Int -> CChar -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CChar Source #
pokeByteOff :: Ptr b -> Int -> CChar -> IO () Source #
Instance details
Defined in System.Posix.Types
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CNfds -> Int Source #
alignment :: CNfds -> Int Source #
peekElemOff :: Ptr CNfds -> Int -> IO CNfds Source #
pokeElemOff :: Ptr CNfds -> Int -> CNfds -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CNfds Source #
pokeByteOff :: Ptr b -> Int -> CNfds -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CSocklen -> Int Source #
alignment :: CSocklen -> Int Source #
peekElemOff :: Ptr CSocklen -> Int -> IO CSocklen Source #
pokeElemOff :: Ptr CSocklen -> Int -> CSocklen -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSocklen Source #
pokeByteOff :: Ptr b -> Int -> CSocklen -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CTimer -> Int Source #
alignment :: CTimer -> Int Source #
peekElemOff :: Ptr CTimer -> Int -> IO CTimer Source #
pokeElemOff :: Ptr CTimer -> Int -> CTimer -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CTimer Source #
pokeByteOff :: Ptr b -> Int -> CTimer -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CKey -> Int Source #
alignment :: CKey -> Int Source #
peekElemOff :: Ptr CKey -> Int -> IO CKey Source #
pokeElemOff :: Ptr CKey -> Int -> CKey -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CKey Source #
pokeByteOff :: Ptr b -> Int -> CKey -> IO () Source #
Instance details
Defined in System.Posix.Types
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CFsFilCnt -> Int Source #
alignment :: CFsFilCnt -> Int Source #
peekElemOff :: Ptr CFsFilCnt -> Int -> IO CFsFilCnt Source #
pokeElemOff :: Ptr CFsFilCnt -> Int -> CFsFilCnt -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CFsFilCnt Source #
pokeByteOff :: Ptr b -> Int -> CFsFilCnt -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CFsBlkCnt -> Int Source #
alignment :: CFsBlkCnt -> Int Source #
peekElemOff :: Ptr CFsBlkCnt -> Int -> IO CFsBlkCnt Source #
pokeElemOff :: Ptr CFsBlkCnt -> Int -> CFsBlkCnt -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CFsBlkCnt Source #
pokeByteOff :: Ptr b -> Int -> CFsBlkCnt -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CClockId -> Int Source #
alignment :: CClockId -> Int Source #
peekElemOff :: Ptr CClockId -> Int -> IO CClockId Source #
pokeElemOff :: Ptr CClockId -> Int -> CClockId -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CClockId Source #
pokeByteOff :: Ptr b -> Int -> CClockId -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CBlkCnt -> Int Source #
alignment :: CBlkCnt -> Int Source #
peekElemOff :: Ptr CBlkCnt -> Int -> IO CBlkCnt Source #
pokeElemOff :: Ptr CBlkCnt -> Int -> CBlkCnt -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CBlkCnt Source #
pokeByteOff :: Ptr b -> Int -> CBlkCnt -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CBlkSize -> Int Source #
alignment :: CBlkSize -> Int Source #
peekElemOff :: Ptr CBlkSize -> Int -> IO CBlkSize Source #
pokeElemOff :: Ptr CBlkSize -> Int -> CBlkSize -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CBlkSize Source #
pokeByteOff :: Ptr b -> Int -> CBlkSize -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CRLim -> Int Source #
alignment :: CRLim -> Int Source #
peekElemOff :: Ptr CRLim -> Int -> IO CRLim Source #
pokeElemOff :: Ptr CRLim -> Int -> CRLim -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CRLim Source #
pokeByteOff :: Ptr b -> Int -> CRLim -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CTcflag -> Int Source #
alignment :: CTcflag -> Int Source #
peekElemOff :: Ptr CTcflag -> Int -> IO CTcflag Source #
pokeElemOff :: Ptr CTcflag -> Int -> CTcflag -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CTcflag Source #
pokeByteOff :: Ptr b -> Int -> CTcflag -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CSpeed -> Int Source #
alignment :: CSpeed -> Int Source #
peekElemOff :: Ptr CSpeed -> Int -> IO CSpeed Source #
pokeElemOff :: Ptr CSpeed -> Int -> CSpeed -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSpeed Source #
pokeByteOff :: Ptr b -> Int -> CSpeed -> IO () Source #
Instance details
Defined in System.Posix.Types
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CUid -> Int Source #
alignment :: CUid -> Int Source #
peekElemOff :: Ptr CUid -> Int -> IO CUid Source #
pokeElemOff :: Ptr CUid -> Int -> CUid -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CUid Source #
pokeByteOff :: Ptr b -> Int -> CUid -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CNlink -> Int Source #
alignment :: CNlink -> Int Source #
peekElemOff :: Ptr CNlink -> Int -> IO CNlink Source #
pokeElemOff :: Ptr CNlink -> Int -> CNlink -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CNlink Source #
pokeByteOff :: Ptr b -> Int -> CNlink -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CGid -> Int Source #
alignment :: CGid -> Int Source #
peekElemOff :: Ptr CGid -> Int -> IO CGid Source #
pokeElemOff :: Ptr CGid -> Int -> CGid -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CGid Source #
pokeByteOff :: Ptr b -> Int -> CGid -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CSsize -> Int Source #
alignment :: CSsize -> Int Source #
peekElemOff :: Ptr CSsize -> Int -> IO CSsize Source #
pokeElemOff :: Ptr CSsize -> Int -> CSsize -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CSsize Source #
pokeByteOff :: Ptr b -> Int -> CSsize -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CPid -> Int Source #
alignment :: CPid -> Int Source #
peekElemOff :: Ptr CPid -> Int -> IO CPid Source #
pokeElemOff :: Ptr CPid -> Int -> CPid -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CPid Source #
pokeByteOff :: Ptr b -> Int -> CPid -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: COff -> Int Source #
alignment :: COff -> Int Source #
peekElemOff :: Ptr COff -> Int -> IO COff Source #
pokeElemOff :: Ptr COff -> Int -> COff -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO COff Source #
pokeByteOff :: Ptr b -> Int -> COff -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CMode -> Int Source #
alignment :: CMode -> Int Source #
peekElemOff :: Ptr CMode -> Int -> IO CMode Source #
pokeElemOff :: Ptr CMode -> Int -> CMode -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CMode Source #
pokeByteOff :: Ptr b -> Int -> CMode -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CIno -> Int Source #
alignment :: CIno -> Int Source #
peekElemOff :: Ptr CIno -> Int -> IO CIno Source #
pokeElemOff :: Ptr CIno -> Int -> CIno -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CIno Source #
pokeByteOff :: Ptr b -> Int -> CIno -> IO () Source #
Instance details
Defined in System.Posix.Types
Methods
sizeOf :: CDev -> Int Source #
alignment :: CDev -> Int Source #
peekElemOff :: Ptr CDev -> Int -> IO CDev Source #
pokeElemOff :: Ptr CDev -> Int -> CDev -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO CDev Source #
pokeByteOff :: Ptr b -> Int -> CDev -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Ratio a -> Int Source #
alignment :: Ratio a -> Int Source #
peekElemOff :: Ptr (Ratio a) -> Int -> IO (Ratio a) Source #
pokeElemOff :: Ptr (Ratio a) -> Int -> Ratio a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (Ratio a) Source #
pokeByteOff :: Ptr b -> Int -> Ratio a -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: StablePtr a -> Int Source #
alignment :: StablePtr a -> Int Source #
peekElemOff :: Ptr (StablePtr a) -> Int -> IO (StablePtr a) Source #
pokeElemOff :: Ptr (StablePtr a) -> Int -> StablePtr a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (StablePtr a) Source #
pokeByteOff :: Ptr b -> Int -> StablePtr a -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: Ptr a -> Int Source #
alignment :: Ptr a -> Int Source #
peekElemOff :: Ptr (Ptr a) -> Int -> IO (Ptr a) Source #
pokeElemOff :: Ptr (Ptr a) -> Int -> Ptr a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (Ptr a) Source #
pokeByteOff :: Ptr b -> Int -> Ptr a -> IO () Source #
Instance details
Defined in Foreign.Storable
Methods
sizeOf :: FunPtr a -> Int Source #
alignment :: FunPtr a -> Int Source #
peekElemOff :: Ptr (FunPtr a) -> Int -> IO (FunPtr a) Source #
pokeElemOff :: Ptr (FunPtr a) -> Int -> FunPtr a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (FunPtr a) Source #
pokeByteOff :: Ptr b -> Int -> FunPtr a -> IO () Source #
Instance details
Defined in Data.Ord
Methods
sizeOf :: Down a -> Int Source #
alignment :: Down a -> Int Source #
peekElemOff :: Ptr (Down a) -> Int -> IO (Down a) Source #
pokeElemOff :: Ptr (Down a) -> Int -> Down a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (Down a) Source #
pokeByteOff :: Ptr b -> Int -> Down a -> IO () Source #
Instance details
Defined in Data.Functor.Identity
Methods
sizeOf :: Identity a -> Int Source #
alignment :: Identity a -> Int Source #
peekElemOff :: Ptr (Identity a) -> Int -> IO (Identity a) Source #
pokeElemOff :: Ptr (Identity a) -> Int -> Identity a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (Identity a) Source #
pokeByteOff :: Ptr b -> Int -> Identity a -> IO () Source #
Instance details
Defined in Data.Complex
Methods
sizeOf :: Complex a -> Int Source #
alignment :: Complex a -> Int Source #
peekElemOff :: Ptr (Complex a) -> Int -> IO (Complex a) Source #
pokeElemOff :: Ptr (Complex a) -> Int -> Complex a -> IO () Source #
peekByteOff :: Ptr b -> Int -> IO (Complex a) Source #
pokeByteOff :: Ptr b -> Int -> Complex a -> IO () Source #
Instance details
Defined in Data.Functor.Const
Methods
sizeOf :: Const a b -> Int Source #
alignment :: Const a b -> Int Source #
peekElemOff :: Ptr (Const a b) -> Int -> IO (Const a b) Source #
pokeElemOff :: Ptr (Const a b) -> Int -> Const a b -> IO () Source #
peekByteOff :: Ptr b0 -> Int -> IO (Const a b) Source #
pokeByteOff :: Ptr b0 -> Int -> Const a b -> IO () Source #