function ctools_math_expr_stack::push in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 includes/math-expr.inc \ctools_math_expr_stack::push()
File
- includes/
math-expr.inc, line 370
Class
Code
function push($val) {
$this->stack[$this->count] = $val;
$this->count++;
}