WC_Eval_Math_Stack::pop()

Pop value from stack.


Description Description


Return Return

(mixed)


Top ↑

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;
		}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.