mutable-containers-0.2.0: Abstactions and concrete implementations of mutable containers

Safe HaskellNone
LanguageHaskell2010

Data.Mutable

Contents

Description

Classes and concrete implementations for mutable data structures.

For more information on the design of this library, see the README file, also available at http://www.stackage.org/package/mutable-containers.

Synopsis

Data types

Single-cell mutable references

data PRef s a Source

A primitive ByteArray reference, supporting any monad.

Since 0.2.0

Instances

Prim a => MutableRef (PRef s a) 
MutableContainer (PRef s a) 
type RefElement (PRef s a) = a 
type MCState (PRef s a) = s 

asPRef :: PRef s a -> PRef s a Source

Since 0.2.0

data URef s a Source

An unboxed vector reference, supporting any monad.

Since 0.2.0

Instances

Unbox a => MutableRef (URef s a) 
MutableContainer (URef s a) 
type RefElement (URef s a) = a 
type MCState (URef s a) = s 

asURef :: URef s a -> URef s a Source

Since 0.2.0

data SRef s a Source

A storable vector reference, supporting any monad.

Since 0.2.0

Instances

Storable a => MutableRef (SRef s a) 
MutableContainer (SRef s a) 
type RefElement (SRef s a) = a 
type MCState (SRef s a) = s 

asSRef :: SRef s a -> SRef s a Source

Since 0.2.0

data BRef s a Source

A boxed vector reference, supporting any monad.

Since 0.2.0

Instances

IsSequence seq => MutablePushBack (BRef s seq) 
IsSequence seq => MutablePopBack (BRef s seq) 
IsSequence seq => MutablePushFront (BRef s seq) 
IsSequence seq => MutablePopFront (BRef s seq) 
Monoid w => MutableCollection (BRef s w) 
MutableRef (BRef s a) 
MutableContainer (BRef s a) 
type CollElement (BRef s w) = Element w 
type RefElement (BRef s a) = a 
type MCState (BRef s a) = s 

asBRef :: BRef s a -> BRef s a Source

Since 0.2.0

Standard re-exports

data IORef a :: * -> *

A mutable variable in the IO monad

asIORef :: IORef a -> IORef a Source

Since 0.2.0

data STRef s a :: * -> * -> *

a value of type STRef s a is a mutable variable in state thread s, containing a value of type a

Instances

asSTRef :: STRef s a -> STRef s a Source

Since 0.2.0

data MutVar s a :: * -> * -> *

A MutVar behaves like a single-element mutable array associated with a primitive state token.

Instances

asMutVar :: MutVar s a -> MutVar s a Source

Since 0.2.0

Collections/queues

data Deque v s a Source

A double-ended queue supporting any underlying vector type and any monad.

This implements a circular double-ended queue with exponential growth.

Since 0.2.0

Instances

MVector v a => MutablePushBack (Deque v s a) 
MVector v a => MutablePopBack (Deque v s a) 
MVector v a => MutablePushFront (Deque v s a) 
MVector v a => MutablePopFront (Deque v s a) 
MVector v a => MutableCollection (Deque v s a) 
MutableContainer (Deque v s a) 
type CollElement (Deque v s a) = a 
type MCState (Deque v s a) = s 

type UDeque = Deque MVector Source

A Deque specialized to unboxed vectors.

Since 0.2.0

asUDeque :: UDeque s a -> UDeque s a Source

Since 0.2.0

type SDeque = Deque MVector Source

A Deque specialized to storable vectors.

Since 0.2.0

asSDeque :: SDeque s a -> SDeque s a Source

Since 0.2.0

type BDeque = Deque MVector Source

A Deque specialized to boxed vectors.

Since 0.2.0

asBDeque :: BDeque s a -> BDeque s a Source

Since 0.2.0

data DList s a Source

A doubly-linked list.

Since 0.2.0

asDList :: DList s a -> DList s a Source

Since 0.2.0

Type classes

class MutableContainer c Source

The parent typeclass for all mutable containers.

Since 0.2.0

Associated Types

type MCState c Source

Associated type giving the primitive state token for the given container, much like PrimState from primtive.

Since 0.2.0

class MutableContainer c => MutableRef c where Source

Typeclass for single-cell mutable references.

Since 0.2.0

Associated Types

type RefElement c Source

Associated type giving the type of the value inside the mutable reference.

Since 0.2.0

Methods

newRef :: (PrimMonad m, PrimState m ~ MCState c) => RefElement c -> m c Source

Create a new mutable reference with the given value.

Since 0.2.0

readRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> m (RefElement c) Source

Read the current value in the mutable reference.

Since 0.2.0

writeRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> RefElement c -> m () Source

Write a new value to the mutable reference.

Since 0.2.0

modifyRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> RefElement c) -> m () Source

Modify the value in the mutable reference, without necessarily forcing the result.

Note: some implementations will force the result, in particular PRef, SRef, and URef.

Since 0.2.0

modifyRef' :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> RefElement c) -> m () Source

Modify the value in the mutable reference, forcing the result.

Since 0.2.0

Instances

class MutableRef c => MutableAtomicRef c where Source

MutableRefs that provide for atomic modifications of their contents.

Since 0.2.0

Methods

atomicModifyRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> (RefElement c, a)) -> m a Source

Modify the value without necessarily forcing the result.

Since 0.2.0

atomicModifyRef' :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> (RefElement c, a)) -> m a Source

Modify the value, forcing the result.

Since 0.2.0

class MutableContainer c => MutableCollection c where Source

Containers which contain 0 or more values.

Since 0.2.0

Associated Types

type CollElement c Source

The type of each value in the collection.

Since 0.2.0

Methods

newColl :: (PrimMonad m, PrimState m ~ MCState c) => m c Source

Create a new, empty collection.

Since 0.2.0

class MutableCollection c => MutablePushFront c where Source

Place a value at the front of the collection.

Since 0.2.0

Methods

pushFront :: (PrimMonad m, PrimState m ~ MCState c) => c -> CollElement c -> m () Source

Place a value at the front of the collection.

Since 0.2.0

class MutableCollection c => MutablePushBack c where Source

Place a value at the back of the collection.

Since 0.2.0

Methods

pushBack :: (PrimMonad m, PrimState m ~ MCState c) => c -> CollElement c -> m () Source

Place a value at the back of the collection.

Since 0.2.0

class MutableCollection c => MutablePopFront c where Source

Take a value from the front of the collection, if available.

Since 0.2.0

Methods

popFront :: (PrimMonad m, PrimState m ~ MCState c) => c -> m (Maybe (CollElement c)) Source

Take a value from the front of the collection, if available.

Since 0.2.0

class MutableCollection c => MutablePopBack c where Source

Take a value from the back of the collection, if available.

Since 0.2.0

Methods

popBack :: (PrimMonad m, PrimState m ~ MCState c) => c -> m (Maybe (CollElement c)) Source

Take a value from the back of the collection, if available.

Since 0.2.0

Constraint kinds

type MutableQueue c = (MutablePopFront c, MutablePushBack c) Source

Collections which allow pushing and popping at the front (aka FIFOs).

Since 0.2.0

type MutableStack c = (MutablePopFront c, MutablePushFront c) Source

Collections which allow pushing at the back and popping at the front (aka FILOs).

Since 0.2.0

type MutableDeque c = (MutableQueue c, MutablePushFront c, MutablePopBack c) Source

Collections which allow pushing and popping at the front and back.

Since 0.2.0

Convenience re-exports

class Monad m => PrimMonad m

Class of primitive state-transformer monads

Minimal complete definition

primitive, internal

Associated Types

type PrimState m :: *

State token type

Instances

type family PrimState m :: *

State token type

Instances

type PrimState IO = RealWorld 
type PrimState (ST s) = s 

data RealWorld :: *

RealWorld is deeply magical. It is primitive, but it is not unlifted (hence ptrArg). We never manipulate values of type RealWorld; it's only used in the type system, to parameterise State#.