ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Public Member Functions | |
count () | |
Return the number of entries on the stack. More... | |
push ($value) | |
Push a new entry onto the stack. More... | |
pop () | |
Pop the last entry from the stack. More... | |
onStack ($value) | |
Test to see if a specified entry exists on the stack. More... | |
clear () | |
Clear the stack. More... | |
showStack () | |
Return an array of all entries on the stack. More... | |
Private Attributes | |
$_stack = array() | |
Definition at line 36 of file CyclicReferenceStack.php.
PHPExcel_CalcEngine_CyclicReferenceStack::clear | ( | ) |
PHPExcel_CalcEngine_CyclicReferenceStack::count | ( | ) |
Return the number of entries on the stack.
Definition at line 51 of file CyclicReferenceStack.php.
PHPExcel_CalcEngine_CyclicReferenceStack::onStack | ( | $value | ) |
Test to see if a specified entry exists on the stack.
mixed | $value | The value to test |
Definition at line 78 of file CyclicReferenceStack.php.
PHPExcel_CalcEngine_CyclicReferenceStack::pop | ( | ) |
Pop the last entry from the stack.
Definition at line 69 of file CyclicReferenceStack.php.
PHPExcel_CalcEngine_CyclicReferenceStack::push | ( | $value | ) |
Push a new entry onto the stack.
mixed | $value |
Definition at line 60 of file CyclicReferenceStack.php.
PHPExcel_CalcEngine_CyclicReferenceStack::showStack | ( | ) |
Return an array of all entries on the stack.
Definition at line 94 of file CyclicReferenceStack.php.
References $_stack.
|
private |
Definition at line 43 of file CyclicReferenceStack.php.
Referenced by showStack().