ListElement::GetPreviousListElement
Defined in:
Returns the previous element in a list.
TSList.h
Prototype
type *GetPreviousListElement(void) const;
Description
The GetPreviousListElement
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