Copyright | (c) 2009 2010 2011 Bryan O'Sullivan |
---|---|
License | BSD-style |
Maintainer | bos@serpentine.com |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
Packed, unboxed, heap-resident arrays. Suitable for performance critical use, both in terms of large data quantities and high speed.
This module is intended to be imported qualified
, to avoid name
clashes with Prelude functions, e.g.
import qualified Data.Text.Array as A
The names in this module resemble those in the Array
family
of modules, but are shorter due to the assumption of qualified
naming.
Synopsis
- type Array = ByteArray
- pattern ByteArray :: ByteArray# -> ByteArray
- type MArray = MutableByteArray
- pattern MutableByteArray :: MutableByteArray# s -> MutableByteArray s
- resizeM :: MArray s -> Int -> ST s (MArray s)
- shrinkM :: MArray s -> Int -> ST s ()
- copyM :: MArray s -> Int -> MArray s -> Int -> Int -> ST s ()
- copyI :: Int -> MArray s -> Int -> Array -> Int -> ST s ()
- copyFromPointer :: MArray s -> Int -> Ptr Word8 -> Int -> ST s ()
- copyToPointer :: Array -> Int -> Ptr Word8 -> Int -> ST s ()
- empty :: Array
- equal :: Array -> Int -> Array -> Int -> Int -> Bool
- compare :: Array -> Int -> Array -> Int -> Int -> Ordering
- run :: (forall s. ST s (MArray s)) -> Array
- run2 :: (forall s. ST s (MArray s, a)) -> (Array, a)
- toList :: Array -> Int -> Int -> [Word8]
- unsafeFreeze :: MArray s -> ST s Array
- unsafeIndex :: Array -> Int -> Word8
- new :: Int -> ST s (MArray s)
- newPinned :: Int -> ST s (MArray s)
- newFilled :: Int -> Int -> ST s (MArray s)
- unsafeWrite :: MArray s -> Int -> Word8 -> ST s ()
- tile :: MArray s -> Int -> ST s ()
- getSizeofMArray :: MArray s -> ST s Int
Types
pattern ByteArray :: ByteArray# -> ByteArray Source #
type MArray = MutableByteArray Source #
Mutable array type, for use in the ST monad.
pattern MutableByteArray :: MutableByteArray# s -> MutableByteArray s Source #
Functions
:: MArray s | Destination |
-> Int | Destination offset |
-> MArray s | Source |
-> Int | Source offset |
-> Int | Count |
-> ST s () |
Copy some elements of a mutable array.
:: Int | Count |
-> MArray s | Destination |
-> Int | Destination offset |
-> Array | Source |
-> Int | Source offset |
-> ST s () |
Copy some elements of an immutable array.
Copy from pointer.
Since: text-2.0
Copy to pointer.
Since: text-2.0
equal :: Array -> Int -> Array -> Int -> Int -> Bool Source #
Compare portions of two arrays for equality. No bounds checking is performed.
compare :: Array -> Int -> Array -> Int -> Int -> Ordering Source #
Compare portions of two arrays. No bounds checking is performed.
Since: text-2.0
run :: (forall s. ST s (MArray s)) -> Array Source #
Run an action in the ST monad and return an immutable array of its result.
run2 :: (forall s. ST s (MArray s, a)) -> (Array, a) Source #
Run an action in the ST monad and return an immutable array of its result paired with whatever else the action returns.
unsafeFreeze :: MArray s -> ST s Array Source #
Freeze a mutable array. Do not mutate the MArray
afterwards!
unsafeIndex :: Array -> Int -> Word8 Source #
Unchecked read of an immutable array. May return garbage or crash on an out-of-bounds access.
newPinned :: Int -> ST s (MArray s) Source #
Create an uninitialized mutable pinned array.
Since: text-2.0