ListElement::GetNextListElement
Defined in:
Returns the next element in a list.
TSList.h
Prototype
type *GetNextListElement(void) const;
Description
The GetNextListElement
function returns a pointer to the element immediately succeeding an object in its owning list. If the object is the last element in a list, or the object does not belong to a list, then the return value is nullptr
.
See Also