1 evalmath.inc EvalMathStack::pop()

File

core/includes/evalmath.inc, line 374

Class

EvalMathStack

Code

function pop() {
  if ($this->count > 0) {
    $this->count--;
    return $this->stack[$this->count];
  }
  return null;
}