LinkedList::valid

(Available since version 1.0)

LinkedList::validCheck whether the singly linked list contains more nodes

Description

public bool LinkedList::valid ( void )

Checks if the singly linked list contains any more nodes.

Parameters

This function has no parameters.

Return Values

Returns TRUE if the singly linked list contains any more nodes, FALSE otherwise.

To Top