ArrayDeque::shift

(Available since version 1.0)

ArrayDeque::shiftShifts a node from the beginning of the array

Description

public mixed ArrayDeque::shift ( void )

Parameters

This function has no parameters.

Return Values

The value of the shifted node.

Errors/Exceptions

Throws SEIDS::Arrays::CantShiftFromEmptyException when the array is empty.

To Top