Skip to content
Snippets Groups Projects
Commit c38c0302 authored by sof's avatar sof
Browse files

[project @ 1999-03-27 16:16:19 by sof]

updated to reflect what lib now provides
parent f93ccef1
No related merge requests found
......@@ -79,14 +79,14 @@ readAddrArray :: Ix ix => MutableByteArray s ix -> ix -> ST s Addr
readFloatArray :: Ix ix => MutableByteArray s ix -> ix -> ST s Float
readDoubleArray :: Ix ix => MutableByteArray s ix -> ix -> ST s Double
readStablePtrArray :: Ix ix => MutableByteArray s ix -> ix -> ST s (StablePtr a)
readWord8Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Word8
readWord16Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Word16
readWord32Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Word32
readWord64Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Word64
readInt8Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Int8
readInt16Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Int16
readInt32Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Int32
readInt64Array :: Ix ix => MutableByteArray s ix -> Int -> ST s Int64
readWord8Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Word8
readWord16Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Word16
readWord32Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Word32
readWord64Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Word64
readInt8Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Int8
readInt16Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Int16
readInt32Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Int32
readInt64Array :: Ix ix => MutableByteArray s ix -> ix -> ST s Int64
writeCharArray :: Ix ix => MutableByteArray s ix -> ix -> Char -> ST s ()
writeIntArray :: Ix ix => MutableByteArray s ix -> ix -> Int -> ST s ()
......@@ -94,14 +94,14 @@ writeAddrArray :: Ix ix => MutableByteArray s ix -> ix -> Addr -> ST s ()
writeFloatArray :: Ix ix => MutableByteArray s ix -> ix -> Float -> ST s ()
writeDoubleArray :: Ix ix => MutableByteArray s ix -> ix -> Double -> ST s ()
writeStablePtrArray :: Ix ix => MutableByteArray s ix -> ix -> StablePtr a -> ST s ()
writeWord8Array :: Ix ix => MutableByteArray s ix -> Int -> Word8 -> ST s ()
writeWord16Array :: Ix ix => MutableByteArray s ix -> Int -> Word16 -> ST s ()
writeWord32Array :: Ix ix => MutableByteArray s ix -> Int -> Word32 -> ST s ()
writeWord64Array :: Ix ix => MutableByteArray s ix -> Int -> Word64 -> ST s ()
writeInt8Array :: Ix ix => MutableByteArray s ix -> Int -> Int8 -> ST s ()
writeInt16Array :: Ix ix => MutableByteArray s ix -> Int -> Int16 -> ST s ()
writeInt32Array :: Ix ix => MutableByteArray s ix -> Int -> Int32 -> ST s ()
writeInt64Array :: Ix ix => MutableByteArray s ix -> Int -> Int64 -> ST s ()
writeWord8Array :: Ix ix => MutableByteArray s ix -> ix -> Word8 -> ST s ()
writeWord16Array :: Ix ix => MutableByteArray s ix -> ix -> Word16 -> ST s ()
writeWord32Array :: Ix ix => MutableByteArray s ix -> ix -> Word32 -> ST s ()
writeWord64Array :: Ix ix => MutableByteArray s ix -> ix -> Word64 -> ST s ()
writeInt8Array :: Ix ix => MutableByteArray s ix -> ix -> Int8 -> ST s ()
writeInt16Array :: Ix ix => MutableByteArray s ix -> ix -> Int16 -> ST s ()
writeInt32Array :: Ix ix => MutableByteArray s ix -> ix -> Int32 -> ST s ()
writeInt64Array :: Ix ix => MutableByteArray s ix -> ix -> Int64 -> ST s ()
freezeCharArray :: Ix ix => MutableByteArray s ix -> ST s (ByteArray ix)
freezeIntArray :: Ix ix => MutableByteArray s ix -> ST s (ByteArray ix)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment