Tree::GetPreviousSubnode
Defined in:
Returns the previous subnode in the same list of subnodes.
TSTree.h
Prototype
type *GetPreviousSubnode(void) const;
Description
Let N represent the tree node for which the GetPreviousSubnode
function is called. The GetPreviousSubnode
function returns the previous subnode in the list of subnodes to which the node N belongs. If N is the first subnode in the list, then the return value is nullptr
.
See Also