unordered-containers-0.2.17.0: Efficient hashing-based container types
Safe HaskellNone
LanguageHaskell2010

Data.HashMap.Internal.Array

Description

WARNING

This module is considered internal.

The Package Versioning Policy does not apply.

The contents of this module may change in any way whatsoever and without any warning between minor versions of this package.

Authors importing this module are expected to track development closely.

Description

Zero based arrays.

Note that no bounds checking are performed.

Synopsis

Documentation

data Array a Source #

Constructors

Array 

Fields

Instances

Instances details
NFData1 Array Source #

Since: 0.2.14.0

Instance details

Defined in Data.HashMap.Internal.Array

Methods

liftRnf :: (a -> ()) -> Array a -> () #

Lift a => Lift (Array a :: Type) Source #

Since: 0.2.17.0

Instance details

Defined in Data.HashMap.Internal.Array

Methods

lift :: Array a -> Q Exp #

liftTyped :: Array a -> Q (TExp (Array a)) #

Show a => Show (Array a) Source # 
Instance details

Defined in Data.HashMap.Internal.Array

Methods

showsPrec :: Int -> Array a -> ShowS #

show :: Array a -> String #

showList :: [Array a] -> ShowS #

NFData a => NFData (Array a) Source # 
Instance details

Defined in Data.HashMap.Internal.Array

Methods

rnf :: Array a -> () #

data MArray s a Source #

Constructors

MArray 

Fields

Creation

new :: Int -> a -> ST s (MArray s a) Source #

Create a new mutable array of specified size, in the specified state thread, with each element containing the specified initial value.

new_ :: Int -> ST s (MArray s a) Source #

singletonM :: a -> ST s (Array a) Source #

pair :: a -> a -> Array a Source #

Basic interface

read :: MArray s a -> Int -> ST s a Source #

write :: MArray s a -> Int -> a -> ST s () Source #

index :: Array a -> Int -> a Source #

indexM :: Array a -> Int -> ST s a Source #

index# :: Array a -> Int -> (# a #) Source #

update :: Array e -> Int -> e -> Array e Source #

O(n) Update the element at the given position in this array.

updateWith' :: Array e -> Int -> (e -> e) -> Array e Source #

O(n) Update the element at the given positio in this array, by applying a function to it. Evaluates the element to WHNF before inserting it into the array.

unsafeUpdateM :: Array e -> Int -> e -> ST s () Source #

O(1) Update the element at the given position in this array, without copying.

insert :: Array e -> Int -> e -> Array e Source #

O(n) Insert an element at the given position in this array, increasing its size by one.

insertM :: Array e -> Int -> e -> ST s (Array e) Source #

O(n) Insert an element at the given position in this array, increasing its size by one.

delete :: Array e -> Int -> Array e Source #

O(n) Delete an element at the given position in this array, decreasing its size by one.

sameArray1 :: (a -> b -> Bool) -> Array a -> Array b -> Bool Source #

trim :: MArray s a -> Int -> ST s (Array a) Source #

Create a new array of the n first elements of mary.

unsafeThaw :: Array a -> ST s (MArray s a) Source #

run :: (forall s. ST s (MArray s e)) -> Array e Source #

copy :: Array e -> Int -> MArray s e -> Int -> Int -> ST s () Source #

Unsafely copy the elements of an array. Array bounds are not checked.

copyM :: MArray s e -> Int -> MArray s e -> Int -> Int -> ST s () Source #

Unsafely copy the elements of an array. Array bounds are not checked.

Folds

foldl :: (b -> a -> b) -> b -> Array a -> b Source #

foldl' :: (b -> a -> b) -> b -> Array a -> b Source #

foldr :: (a -> b -> b) -> b -> Array a -> b Source #

foldr' :: (a -> b -> b) -> b -> Array a -> b Source #

foldMap :: Monoid m => (a -> m) -> Array a -> m Source #

all :: (a -> Bool) -> Array a -> Bool Source #

Verifies that a predicate holds for all elements of an array.

thaw :: Array e -> Int -> Int -> ST s (MArray s e) Source #

map :: (a -> b) -> Array a -> Array b Source #

map' :: (a -> b) -> Array a -> Array b Source #

Strict version of map.

traverse :: Applicative f => (a -> f b) -> Array a -> f (Array b) Source #

traverse' :: Applicative f => (a -> f b) -> Array a -> f (Array b) Source #

toList :: Array a -> [a] Source #

fromList :: Int -> [a] -> Array a Source #

fromList' :: Int -> [a] -> Array a Source #