interface KeyValueStoreSortedSetInterface in Key-value Extensions 8
Hierarchy
- interface \Drupal\key_value\KeyValueStore\KeyValueStoreSortedInterface
- interface \Drupal\key_value\KeyValueStore\KeyValueStoreSortedSetInterface
Expanded class hierarchy of KeyValueStoreSortedSetInterface
All classes that implement KeyValueStoreSortedSetInterface
File
- src/
KeyValueStore/ KeyValueStoreSortedSetInterface.php, line 5
Namespace
Drupal\key_value\KeyValueStoreView source
interface KeyValueStoreSortedSetInterface extends KeyValueStoreSortedInterface {
/**
* @param float $score
* @param mixed $member
*/
public function add($score, $member);
/**
* @param array $pairs
*/
public function addMultiple(array $pairs);
/**
* @param float $start
* @param float $stop
*/
public function deleteRange($start, $stop, $inclusive = TRUE);
/**
* @return float
*/
public function getMaxScore();
/**
* @return float
*/
public function getMinScore();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
KeyValueStoreSortedInterface:: |
public | function | 1 | |
KeyValueStoreSortedInterface:: |
public | function | 1 | |
KeyValueStoreSortedSetInterface:: |
public | function | 1 | |
KeyValueStoreSortedSetInterface:: |
public | function | 1 | |
KeyValueStoreSortedSetInterface:: |
public | function | 1 | |
KeyValueStoreSortedSetInterface:: |
public | function | 1 | |
KeyValueStoreSortedSetInterface:: |
public | function | 1 |