You are here

public function PHPExcel_Calculation_Token_Stack::pop in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php \PHPExcel_Calculation_Token_Stack::pop()

* Pop the last entry from the stack * *

Return value

mixed

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php, line 87

Class

PHPExcel_Calculation_Token_Stack
PHPExcel_Calculation_Token_Stack

Code

public function pop() {
  if ($this->_count > 0) {
    return $this->_stack[--$this->_count];
  }
  return NULL;
}