WC_Eval_Math_Stack::pop()
Pop value from stack.
Description Description
Return Return
(mixed)
Source Source
File: includes/libraries/class-wc-eval-math.php
public function pop() { if ( $this->count > 0 ) { $this->count--; return $this->stack[ $this->count ]; } return null; }