Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
c38c0302
Commit
c38c0302
authored
Mar 27, 1999
by
sof
Browse files
[project @ 1999-03-27 16:16:19 by sof]
updated to reflect what lib now provides
parent
f93ccef1
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/docs/users_guide/MutableArray.sgml
View file @
c38c0302
...
...
@@ -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)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment