public function DrupalCacheArray::offsetExists

7.x bootstrap.inc public DrupalCacheArray::offsetExists($offset)

Implements ArrayAccess::offsetExists().

1 method overrides DrupalCacheArray::offsetExists()
ThemeRegistry::offsetExists in drupal-7.x/includes/theme.inc
Implements ArrayAccess::offsetExists().

File

drupal-7.x/includes/bootstrap.inc, line 348
Functions that need to be loaded on every Drupal request.

Class

DrupalCacheArray
Provides a caching wrapper to be used in place of large array structures.

Code

public function offsetExists($offset) {
  return $this->offsetGet($offset) !== NULL;
}