\PhpOffice\PhpSpreadsheet\Calculation\TokenStack

Summary

Methods
Properties
Constants
count()
push()
pop()
last()
clear()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
$stack
$count
N/A

Properties

$stack

$stack : array<mixed,mixed>

The parser stack for formulae.

Type

array<mixed,mixed>

$count

$count : integer

Count of entries in the parser stack.

Type

integer

Methods

count()

count() : integer

Return the number of entries on the stack.

Returns

integer

push()

push(mixed  $type, mixed  $value, mixed  $reference = null) 

Push a new entry onto the stack.

Parameters

mixed $type
mixed $value
mixed $reference

pop()

pop() : mixed

Pop the last entry from the stack.

Returns

mixed

last()

last(integer  $n = 1) : mixed

Return an entry from the stack without removing it.

Parameters

integer $n

number indicating how far back in the stack we want to look

Returns

mixed

clear()

clear() 

Clear the stack.