public function PHPExcel_CachedObjectStorage_CacheBase::isDataSet in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::isDataSet()
* Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? * *
Parameters
string $pCoord Coordinate address of the cell to check: * @return boolean
6 calls to PHPExcel_CachedObjectStorage_CacheBase::isDataSet()
- PHPExcel_CachedObjectStorage_APC::getCacheData in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ APC.php - Get cell at a specific coordinate
- PHPExcel_CachedObjectStorage_APC::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ APC.php - Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell?
- PHPExcel_CachedObjectStorage_Memcache::getCacheData in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Memcache.php - Get cell at a specific coordinate
- PHPExcel_CachedObjectStorage_Memcache::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Memcache.php - * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? * *
- PHPExcel_CachedObjectStorage_Wincache::getCacheData in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Wincache.php - * Get cell at a specific coordinate * *
5 methods override PHPExcel_CachedObjectStorage_CacheBase::isDataSet()
- PHPExcel_CachedObjectStorage_APC::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ APC.php - Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell?
- PHPExcel_CachedObjectStorage_Memcache::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Memcache.php - * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? * *
- PHPExcel_CachedObjectStorage_SQLite3::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ SQLite3.php - * Is a value set for an indexed cell? * *
- PHPExcel_CachedObjectStorage_SQLite::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ SQLite.php - * Is a value set for an indexed cell? * *
- PHPExcel_CachedObjectStorage_Wincache::isDataSet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Wincache.php - * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ CacheBase.php, line 105
Class
- PHPExcel_CachedObjectStorage_CacheBase
- PHPExcel_CachedObjectStorage_CacheBase
Code
public function isDataSet($pCoord) {
if ($pCoord === $this->_currentObjectID) {
return true;
}
// Check if the requested entry exists in the cache
return isset($this->_cellCache[$pCoord]);
}