Documentation

ListMerge

ListMerge Description Merge two lists and store the result in first list.

Read More

ListMergeL

ListMergeL Description Merge two lists and store the result in first list.

Read More

ListMergeR

ListMergeR Description Merge two lists and store the result in first list.

Read More

ListNode

ListNode Description Doubly-linked list node FIELDS: - next : Reference to next node. NULL if no next node exists (tail). - prev : Reference to previous node. NULL if no previous node exists (head). - data : Type specific pointer to data.

Read More

ListNodeAt

ListNodeAt Description Node at given index in list

Read More

ListNodeBegin

ListNodeBegin Description Reference to head node in list

Read More

ListNodeEnd

ListNodeEnd Description Reference to tail node in list

Read More

ListNodeFirst

ListNodeFirst Description Head node in list.

Read More

ListNodeLast

ListNodeLast Description Tail node in list.

Read More

ListNodeNext

ListNodeNext Description Get item after (next to) given list item

Read More