DynamicArray::pop

(Available since version 1.0)

DynamicArray::popPops an element from the end of the array

Description

public mixed DynamicArray::pop ( void )

Parameters

This function has no parameters.

Return Values

The value of the popped node.

Errors/Exceptions

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

To Top