Mission Base

Program Base Library Functions

void pblListFree

( PblList* list )

Free the list's memory from heap.

Documentation

Free the list's memory from heap.

Note: The memory of the elements themselves is not freed.

For array lists this method has a time complexity of O(1).

For linked lists this method has a time complexity of O(N), with N being the number of elements in the list.

Parameters:
list - The list to free
Returns:
void

Alphabetic index



This page was generated with the help of DOC++.