You are here

public function WebformEvalMathStack::pop in Webform Calculator 7.2

File

./matheval.class.php, line 378

Class

WebformEvalMathStack

Code

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