primitive-unlifted-1.0.0.0: Primitive GHC types with unlifted types inside
Safe HaskellNone
LanguageHaskell2010

Data.Primitive.Unlifted.Array.ST

Description

A version of the Array interface specialized to ST. This is intended primarily so library developers can easily check whether the basic operations are unboxed properly, but its more constrained type signatures also offer somewhat better type inference where applicable.

Synopsis

Types

data UnliftedArray_ a unlifted_a Source #

An UnliftedArray_ a unlifted_a represents an array of values of a lifted type a that wrap values of an unlifted type unlifted_a. It is expected that unlifted_a ~ Unlifted a, but imposing that constraint here would force the type roles to nominal, which is often undesirable when arrays are used as components of larger datatypes.

Constructors

UnliftedArray (UnliftedArray# unlifted_a) 

Instances

Instances details
(PrimUnlifted a, unlifted_a ~ Unlifted a) => IsList (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Associated Types

type Item (UnliftedArray_ a unlifted_a) #

Methods

fromList :: [Item (UnliftedArray_ a unlifted_a)] -> UnliftedArray_ a unlifted_a #

fromListN :: Int -> [Item (UnliftedArray_ a unlifted_a)] -> UnliftedArray_ a unlifted_a #

toList :: UnliftedArray_ a unlifted_a -> [Item (UnliftedArray_ a unlifted_a)] #

(Eq a, PrimUnlifted a, unlifted_a ~ Unlifted a) => Eq (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Methods

(==) :: UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a -> Bool #

(/=) :: UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a -> Bool #

(Show a, PrimUnlifted a, unlifted_a ~ Unlifted a) => Show (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Methods

showsPrec :: Int -> UnliftedArray_ a unlifted_a -> ShowS #

show :: UnliftedArray_ a unlifted_a -> String #

showList :: [UnliftedArray_ a unlifted_a] -> ShowS #

(PrimUnlifted a, unlifted_a ~ Unlifted a) => Semigroup (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Methods

(<>) :: UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a #

sconcat :: NonEmpty (UnliftedArray_ a unlifted_a) -> UnliftedArray_ a unlifted_a #

stimes :: Integral b => b -> UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a #

(PrimUnlifted a, unlifted_a ~ Unlifted a) => Monoid (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Methods

mempty :: UnliftedArray_ a unlifted_a #

mappend :: UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a -> UnliftedArray_ a unlifted_a #

mconcat :: [UnliftedArray_ a unlifted_a] -> UnliftedArray_ a unlifted_a #

unlifted_a ~ Unlifted a => PrimUnlifted (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Associated Types

type Unlifted (UnliftedArray_ a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: UnliftedArray_ a unlifted_a -> Unlifted (UnliftedArray_ a unlifted_a) Source #

fromUnlifted# :: Unlifted (UnliftedArray_ a unlifted_a) -> UnliftedArray_ a unlifted_a Source #

type Item (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

type Item (UnliftedArray_ a unlifted_a) = a
type Unlifted (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

type Unlifted (UnliftedArray_ a unlifted_a) = UnliftedArray# unlifted_a

type UnliftedArray a = UnliftedArray_ a (Unlifted a) Source #

A type synonym for an UnliftedArray_ containing lifted values of a particular type. As a general rule, this type synonym should not be used in class instances—use UnliftedArray_ with an equality constraint instead. It also should not be used when defining newtypes or datatypes, unless those will have restrictive type roles regardless—use UnliftedArray_ instead.

data MutableUnliftedArray_ s a unlifted_a Source #

A mutable version of UnliftedArray_.

Constructors

MutableUnliftedArray (MutableUnliftedArray# s unlifted_a) 

Instances

Instances details
unlifted_a ~ Unlifted a => Eq (MutableUnliftedArray_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Methods

(==) :: MutableUnliftedArray_ s a unlifted_a -> MutableUnliftedArray_ s a unlifted_a -> Bool #

(/=) :: MutableUnliftedArray_ s a unlifted_a -> MutableUnliftedArray_ s a unlifted_a -> Bool #

unlifted_a ~ Unlifted a => PrimUnlifted (MutableUnliftedArray_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Associated Types

type Unlifted (MutableUnliftedArray_ s a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: MutableUnliftedArray_ s a unlifted_a -> Unlifted (MutableUnliftedArray_ s a unlifted_a) Source #

fromUnlifted# :: Unlifted (MutableUnliftedArray_ s a unlifted_a) -> MutableUnliftedArray_ s a unlifted_a Source #

type Unlifted (MutableUnliftedArray_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

type Unlifted (MutableUnliftedArray_ s a unlifted_a) = MutableUnliftedArray# s unlifted_a

Operations

newUnliftedArray Source #

Arguments

:: PrimUnlifted a 
=> Int

size

-> a

initial value

-> ST s (MutableUnliftedArray s a) 

Creates a new MutableUnliftedArray with the specified value as initial contents.

unsafeNewUnliftedArray Source #

Arguments

:: Int

size

-> ST s (MutableUnliftedArray s a) 

Creates a new MutableUnliftedArray. This function is unsafe because it initializes all elements of the array as pointers to the empty array. Attempting to read one of these elements before writing to it is in effect an unsafe coercion from UnliftedArray a to the element type.

sizeofUnliftedArray :: UnliftedArray e -> Int Source #

Yields the length of an UnliftedArray.

sameMutableUnliftedArray :: MutableUnliftedArray s a -> MutableUnliftedArray s a -> Bool Source #

Determines whether two MutableUnliftedArray values are the same. This is object/pointer identity, not based on the contents.

unsafeFreezeUnliftedArray :: MutableUnliftedArray s a -> ST s (UnliftedArray a) Source #

Freezes a MutableUnliftedArray, yielding an UnliftedArray. This simply marks the array as frozen in place, so it should only be used when no further modifications to the mutable array will be performed.

freezeUnliftedArray Source #

Arguments

:: MutableUnliftedArray s a

source

-> Int

offset

-> Int

length

-> ST s (UnliftedArray a) 

Freezes a portion of a MutableUnliftedArray, yielding an UnliftedArray. This operation is safe, in that it copies the frozen portion, and the existing mutable array may still be used afterward.

thawUnliftedArray Source #

Arguments

:: UnliftedArray a

source

-> Int

offset

-> Int

length

-> ST s (MutableUnliftedArray s a) 

Thaws a portion of an UnliftedArray, yielding a MutableUnliftedArray. This copies the thawed portion, so mutations will not affect the original array.

unsafeThawUnliftedArray Source #

Arguments

:: UnliftedArray a

source

-> ST s (MutableUnliftedArray s a) 

Thaws an UnliftedArray, yielding a MutableUnliftedArray. This does not make a copy.

setUnliftedArray Source #

Arguments

:: PrimUnlifted a 
=> MutableUnliftedArray s a

destination

-> a

value to fill with

-> Int

offset

-> Int

length

-> ST s () 

copyUnliftedArray Source #

Arguments

:: MutableUnliftedArray s a

destination

-> Int

offset into destination

-> UnliftedArray a

source

-> Int

offset into source

-> Int

number of elements to copy

-> ST s () 

Copies the contents of an immutable array into a mutable array.

copyMutableUnliftedArray Source #

Arguments

:: MutableUnliftedArray s a

destination

-> Int

offset into destination

-> MutableUnliftedArray s a

source

-> Int

offset into source

-> Int

number of elements to copy

-> ST s () 

Copies the contents of one mutable array into another.

cloneUnliftedArray Source #

Arguments

:: UnliftedArray a

source

-> Int

offset

-> Int

length

-> UnliftedArray a 

Creates a copy of a portion of an UnliftedArray

cloneMutableUnliftedArray Source #

Arguments

:: MutableUnliftedArray s a

source

-> Int

offset

-> Int

length

-> ST s (MutableUnliftedArray s a) 

Creates a new MutableUnliftedArray containing a copy of a portion of another mutable array.

runUnliftedArray :: (forall s. ST s (MutableUnliftedArray s a)) -> UnliftedArray a Source #

Execute a stateful computation and freeze the resulting array.

dupableRunUnliftedArray :: (forall s. ST s (MutableUnliftedArray s a)) -> UnliftedArray a Source #

Execute a stateful computation and freeze the resulting array. It is possible, but unlikely, that the computation will be run multiple times in multiple threads.

List Conversion

unliftedArrayToList :: PrimUnlifted a => UnliftedArray a -> [a] Source #

Convert the unlifted array to a list.

Folding

foldrUnliftedArray :: forall a b. PrimUnlifted a => (a -> b -> b) -> b -> UnliftedArray a -> b Source #

foldrUnliftedArray' :: forall a b. PrimUnlifted a => (a -> b -> b) -> b -> UnliftedArray a -> b Source #

Strict right-associated fold over the elements of an 'UnliftedArray.

foldlUnliftedArray :: forall a b. PrimUnlifted a => (b -> a -> b) -> b -> UnliftedArray a -> b Source #

Lazy left-associated fold over the elements of an UnliftedArray.

foldlUnliftedArray' :: forall a b. PrimUnlifted a => (b -> a -> b) -> b -> UnliftedArray a -> b Source #

Strict left-associated fold over the elements of an UnliftedArray.

foldlUnliftedArrayM' :: (PrimUnlifted a, Monad m) => (b -> a -> m b) -> b -> UnliftedArray a -> m b Source #

Strict effectful left-associated fold over the elements of an UnliftedArray.

Traversals

traverseUnliftedArray_ :: (PrimUnlifted a, Applicative m) => (a -> m b) -> UnliftedArray a -> m () Source #

Effectfully traverse the elements of an UnliftedArray, discarding the resulting values.

itraverseUnliftedArray_ :: (PrimUnlifted a, Applicative m) => (Int -> a -> m b) -> UnliftedArray a -> m () Source #

Effectful indexed traversal of the elements of an UnliftedArray, discarding the resulting values.

Mapping

mapUnliftedArray :: (PrimUnlifted a, PrimUnlifted b) => (a -> b) -> UnliftedArray a -> UnliftedArray b Source #

Map over the elements of an UnliftedArray.