You are here

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

* List of operators that can be used within formulae * The true/false value indicates whether it is a binary operator or a unary operator * * @access private *

Type: array

File

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

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

private static $_operators = array(
  '+' => TRUE,
  '-' => TRUE,
  '*' => TRUE,
  '/' => TRUE,
  '^' => TRUE,
  '&' => TRUE,
  '%' => FALSE,
  '~' => FALSE,
  '>' => TRUE,
  '<' => TRUE,
  '=' => TRUE,
  '>=' => TRUE,
  '<=' => TRUE,
  '<>' => TRUE,
  '|' => TRUE,
  ':' => TRUE,
);