WC_Eval_Math_Stack::push()
Push value into stack.
Method of the class: WC_Eval_Math_Stack{}
No Hooks.
Return
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 9.7.1
public function push( $val ) { $this->stack[ $this->count ] = $val; $this->count++; }