Home
last modified time | relevance | path

Searched refs:primaryKey (Results 1 – 1 of 1) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DDoubleKeyMap.php22 * @param mixed $primaryKey
26 public function set($primaryKey, $secondaryKey, $value) : void argument
28 $secondaryData = $this->data->get($primaryKey);
33 $this->data->put($primaryKey, $secondaryData);
40 * @param mixed $primaryKey
45 public function getByTwoKeys($primaryKey, $secondaryKey) argument
47 $data2 = $this->data->get($primaryKey);
57 * @param mixed $primaryKey
59 public function getByOneKey($primaryKey) : Map argument
61 return $this->data->get($primaryKey);
[all …]