You are here

private static property PHPExcel_Calculation::$_operatorPrecedence 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::_operatorPrecedence

File

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

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

private static $_operatorPrecedence = array(
  ':' => 8,
  //	Range
  '|' => 7,
  //	Intersect
  '~' => 6,
  //	Negation
  '%' => 5,
  //	Percentage
  '^' => 4,
  //	Exponentiation
  '*' => 3,
  '/' => 3,
  //	Multiplication and Division
  '+' => 2,
  '-' => 2,
  //	Addition and Subtraction
  '&' => 1,
  //	Concatenation
  '>' => 0,
  '<' => 0,
  '=' => 0,
  '>=' => 0,
  '<=' => 0,
  '<>' => 0,
);