LinkedList::bottom

(Available since version 1.0)

LinkedList::bottomPeeks at the node from the beginning of the singly linked list

Description

public mixed LinkedList::bottom ( void )

Parameters

This function has no parameters.

Return Values

The value of the first node.

Errors/Exceptions

Throws SEIDS::LinkedLists::CantPeekAtEmptyException when the data-structure is empty.

To Top