You are here

public function ctools_math_expr_stack::__construct in Chaos Tool Suite (ctools) 7

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;
}