1.2.7Class GarbagePointer

Metaclass for internal and application-wide garbage sensible data.

Class GarbagePointer from \
                 BOM( )

GarbagePointer is a class used to reflect opaque data which can be automatically destroyed by the Falcon Garbage Collector when it goes out of scope.

Methods
ptrReturns the inner data stored in this pointer.
Methods inherited from class BOM
__addOverrides binary addition operand.
__callOverrides call operator "self()".
__decOverrides decrement unary prefix operand.
__decpostOverrides decrement unary postfix operand.
__divOverrides binary division operand.
__getIndexOverrides array access operator []
__incOverrides increment unary prefix operand.
__incpostOverrides increment unary postifx operand.
__modOverrides modulo operand.
__mulOverrides binary multiplication operand.
__powOverrides power operand.
__setIndexOverrides array write operator []
__subOverrides binary subtraction operand.
baseClassReturns the class item from which an object has been instantiated.
boundDetermines if an item is bound or not.
classNameReturns the name of the class an instance is instantiated from.
clonePerforms a deep copy of the item.
comparePerforms a lexicographical comparison.
derivedFromChecks if this item has a given parent.
describeReturns the deep contents of an item on a string representation.
isCallableDetermines if an item is callable.
lenRetrieves the length of a collection
metaclassReturns the metaclass associated with this item.
ptrReturns a raw memory pointer out of this data (as an integer).
serializeSerialize the item on a stream for persistent storage.
toStringCoverts the object to string.
typeIdReturns an integer indicating the type of this item.

Methods

ptr

Returns the inner data stored in this pointer.

GarbagePointer.ptr()
ReturnDeep data (as a pointer).

This function returns a pointer value (stored in a Falcon integer) pointing to the inner FalconData served this garbage pointer.

Made with http://www.falconpl.org