LinkedList::push

(Available since version 1.0)

LinkedList::pushPushes an element at the end of the singly linked list

Description

public bool LinkedList::push ( mixed $value )

Pushes value at the end of the singly linked list.

Parameters

value

The value to push.

Return Values

TRUE.

To Top