WC_Eval_Math_Stack::push
Push value into stack.
Method of the class: WC_Eval_Math_Stack{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Eval_Math_Stack = new WC_Eval_Math_Stack(); $WC_Eval_Math_Stack->push( $val );
- $val(mixed) (required)
- .
WC_Eval_Math_Stack::push() WC Eval Math Stack::push code WC 10.5.0
public function push( $val ) {
$this->stack[ $this->count ] = $val;
$this->count++;
}