ivory-0.1.0.7: Safe embedded C programming.

Safe HaskellNone
LanguageHaskell2010

Ivory.Language.Ref

Synopsis

Documentation

class IvoryRef ref Source #

TODO remove class, leave function only

Minimal complete definition

unwrapRef

Instances

type Ref = Pointer Valid Mutable Source #

A non-null pointer to a memory area.

constRef :: IvoryArea area => Ref s area -> ConstRef s area Source #

Turn a reference into a constant reference. TODO deprecate in favor of pointerCastToConst

deref :: forall eff ref s a. (IvoryStore a, IvoryVar a, IvoryVar (ref s (Stored a)), IvoryRef ref) => ref s (Stored a) -> Ivory eff a Source #

Dereferenceing.

refCopy :: forall eff sTo ref sFrom a. (IvoryRef ref, IvoryVar (Ref sTo a), IvoryVar (ref sFrom a), IvoryArea a) => Ref sTo a -> ref sFrom a -> Ivory eff () Source #

Memory copy. Emits an assertion that the two references are unequal.

store :: forall eff s a. IvoryStore a => Ref s (Stored a) -> a -> Ivory eff () Source #