Module: shared-ptr
A simple shared pointer module. Apart from the SharedPtr
macro and
concept macro, the documentation in this module is for a generated
shared pointer instance of type T
.
Linkage: N/A
Members: N/A
The core shared pointer structure type.
Linkage: extern
Returns: bool
Parameters:
(loc (ref (SharedPtr T)))
: The shared pointer.(value (p T))
: The value to assign to the shared pointer.
Initialise the shared pointer structure with a pointer. Once the structure has been initialised with the pointer, it takes ownership of it. The structure assumes that the pointer was created by way of malloc.
Linkage: extern
Returns: bool
Parameters:
(loc (ref (SharedPtr T)))
: The shared pointer.
Initialise an empty/null shared pointer structure.
Linkage: extern
Returns: (p T)
Parameters:
(mloc (SharedPtr T))
: The shared pointer.
Returns the underlying pointer.
Linkage: extern
Returns: T
Parameters:
(mloc (SharedPtr T))
: The shared pointer.
Dereferencing the shared pointer returns the value from the underlying pointer.
Linkage: extern
Parameters:
(T Type)
: The type node.
Expands to a SharedPtr
definition over the relevant type.
Linkage: extern
Parameters:
T
: The type node.
Expands to the concrete type name of the SharedPtr
generated by way
of the concept macro.