You are here

private static property PHPExcel_Calculation::$_operatorAssociativity in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php \PHPExcel_Calculation::_operatorAssociativity

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php, line 2711

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

private static $_operatorAssociativity = array(
  '^' => 0,
  //	Exponentiation
  '*' => 0,
  '/' => 0,
  //	Multiplication and Division
  '+' => 0,
  '-' => 0,
  //	Addition and Subtraction
  '&' => 0,
  //	Concatenation
  '|' => 0,
  ':' => 0,
  //	Intersect and Range
  '>' => 0,
  '<' => 0,
  '=' => 0,
  '>=' => 0,
  '<=' => 0,
  '<>' => 0,
);