1 evalmath.inc | EvalMathStack::push($val) |
File
- core/
includes/ evalmath.inc, line 369
Class
Code
function push($val) {
$this->stack[$this->count] = $val;
$this->count++;
}
1 evalmath.inc | EvalMathStack::push($val) |
function push($val) {
$this->stack[$this->count] = $val;
$this->count++;
}