function ctools_math_expr_stack::__construct

Ctools_math_expr_stack constructor.

File

includes/math-expr.inc, line 836

Class

ctools_math_expr_stack
Class implementing a simple stack structure, used by ctools_math_expr.

Code

public function __construct() {
    $this->stack = array();
    $this->count = 0;
}