1.20.x evalmath.inc | EvalMathStack::pop() |
File
- includes/
evalmath.inc, line 374
Class
Code
function pop() {
if ($this->count > 0) {
$this->count--;
return $this->stack[$this->count];
}
return null;
}
1.20.x evalmath.inc | EvalMathStack::pop() |
function pop() {
if ($this->count > 0) {
$this->count--;
return $this->stack[$this->count];
}
return null;
}