ListElement::Previous
Defined in: C4List.h
Returns the previous element in a list.
Prototype
type *Previous(void) const;
Description
The Previous function returns a pointer to the element immediately preceding an object in its owning list. If the object is the first element in a list, or the object does not belong to a list, then the return value is nullptr.
See Also
ListElement::Next
|