ivory-0.1.0.3: Safe embedded C programming.

Safe HaskellNone
LanguageHaskell2010

Ivory.Language.Ref

Synopsis

Documentation

newtype Ref s a Source

A non-null pointer to a memory area.

Constructors

Ref 

Fields

getRef :: Expr
 

Instances

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

Turn a reference into a constant reference.

class IvoryRef ref where Source

Methods

unwrapRef :: IvoryVar a => ref s (Stored a) -> Expr Source

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