Implements weak reference.
Note: The class contains a pointer to a target object thus it behaves as a normal reference if placed in GC block without NO_SCAN attribute.
Tip: This behaves like C#'s short weak reference or Java's weak reference.
Determines whether referenced object is finalized.
Returns referenced object if it isn't finalized thus creating a strong reference to it. Returns null otherwise.
See Implementation
Implements weak reference.
Note: The class contains a pointer to a target object thus it behaves as a normal reference if placed in GC block without NO_SCAN attribute.
Tip: This behaves like C#'s short weak reference or Java's weak reference.