You are here

function ctools_math_expr_stack::push in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/math-expr.inc \ctools_math_expr_stack::push()

File

includes/math-expr.inc, line 370

Class

ctools_math_expr_stack

Code

function push($val) {
  $this->stack[$this->count] = $val;
  $this->count++;
}