You are here

interface KeyValueStoreSortedInterface in Key-value Extensions 8

Hierarchy

Expanded class hierarchy of KeyValueStoreSortedInterface

All classes that implement KeyValueStoreSortedInterface

File

src/KeyValueStore/KeyValueStoreSortedInterface.php, line 5

Namespace

Drupal\key_value\KeyValueStore
View source
interface KeyValueStoreSortedInterface {

  /**
   * @return integer
   */
  public function getCount();

  /**
   * @param float $start
   * @param float $stop
   * @param boolean $inclusive
   *
   * @return array
   */
  public function getRange($start, $stop = NULL, $inclusive = TRUE);

}

Members