You are here

function EvalMathStack::pop in Webform Calculator 7

File

./evalmath.class.php, line 376

Class

EvalMathStack

Code

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