Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Deprecated: use Capnp.Mutability instead
There is a common pattern in Haskell libraries that work with mutable data:
- Two types, a mutable and an immutable variant of the same structure.
thaw
andfreeze
functions to convert between these.- Sometimes unsafe variants of
thaw
andfreeze
, which avoid a copy but can break referential transparency if misused.
This module abstracts out the above pattern into a generic type family Thaw
,
and provides some of the common higher-level tools built on top of these
primitives.
Note that there's nothing terribly Cap'N Proto specific about this module; we may even factor it out into a separate package at some point.
Documentation
The Thaw
type class relates mutable and immutable versions of a type.
The instance is defined on the immutable variant;
is the
mutable version of an immutable type Mutable
s aa
, bound to the state token s
.
thaw :: (PrimMonad m, PrimState m ~ s) => a -> m (Mutable s a) Source #
Convert an immutable value to a mutable one.
freeze :: (PrimMonad m, PrimState m ~ s) => Mutable s a -> m a Source #
Convert a mutable value to an immutable one.
unsafeThaw :: (PrimMonad m, PrimState m ~ s) => a -> m (Mutable s a) Source #
Like thaw
, except that the caller is responsible for ensuring that
the original value is not subsequently used; doing so may violate
referential transparency.
The default implementation of this is just the same as thaw
, but
typically an instance will override this with a trivial (unsafe) cast,
hence the obligation described above.
unsafeFreeze :: (PrimMonad m, PrimState m ~ s) => Mutable s a -> m a Source #
Unsafe version of freeze
analagous to unsafeThaw
. The caller must
ensure that the original value is not used after this call.
create :: Thaw a => (forall s. ST s (Mutable s a)) -> a Source #
Create and freeze a mutable value, safely, without doing a full copy.
internally, create
calls unsafeFreeze, but it cannot be directly used to
violate referential transparency, as the value is not available to the
caller after freezing.
createT :: (Traversable f, Thaw a) => (forall s. ST s (f (Mutable s a))) -> f a Source #
Like create
, but the result is wrapped in an instance of Traversable
.