Safe Haskell | Safe |
---|---|
Language | Haskell98 |
Foreign.Storable.Tuple
Contents
Documentation
storeTriple :: (Storable a, Storable b, Storable c) => Dictionary (a, b, c) Source #
storeQuadruple :: (Storable a, Storable b, Storable c, Storable d) => Dictionary (a, b, c, d) Source #
Orphan instances
(Storable a, Storable b) => Storable (a, b) Source # | |
(Storable a, Storable b, Storable c) => Storable (a, b, c) Source # | |
(Storable a, Storable b, Storable c, Storable d) => Storable (a, b, c, d) Source # | |
Methods sizeOf :: (a, b, c, d) -> Int # alignment :: (a, b, c, d) -> Int # peekElemOff :: Ptr (a, b, c, d) -> Int -> IO (a, b, c, d) # pokeElemOff :: Ptr (a, b, c, d) -> Int -> (a, b, c, d) -> IO () # peekByteOff :: Ptr b0 -> Int -> IO (a, b, c, d) # pokeByteOff :: Ptr b0 -> Int -> (a, b, c, d) -> IO () # |