検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 248 for Ds (0.012 sec.)
Returns the value for a given key 5358
« Ds\Map::first Ds\Map::hasKey » PHP Manual Map Returns the value for a given key Ds\Map::get (P ... ECL ds >= 1.0.0) Ds\Map::get — Returns the value for a gi ... ven key 説明 public Ds\Map::get ( mixed $key , mixed $default = ? ): mixe ... type object are supported. If an object implements Ds\Hashable , equality will be determined by the obje ... s equals function. If an object does not implement Ds\Hashable , objects must be references to the same ...
https://man.plustar.jp/php/ds-map.get.html - [similar]
Returns the current capacity 5358
« Ds\PriorityQueue::allocate Ds\PriorityQueue::clear » PHP Manual PriorityQueue Returns the curr ... ent capacity Ds\PriorityQueue::capacity (PECL ds >= 1.0.0) Ds\Prio ... apacity — Returns the current capacity 説明 public Ds\PriorityQueue::capacity (): int Returns the curren ... タはありません。 戻り値 The current capacity. 例 例1 Ds\PriorityQueue::capacity() example <?php $queue = n ... ew \ Ds \ PriorityQueue (); var_dump ( $queue -> capacity ...
https://man.plustar.jp/php/ds-priorityqueue.capacity.html - [similar]
Returns whether the queue is empty 5358
« Ds\PriorityQueue::count Ds\PriorityQueue::jsonSerialize » PHP Manual PriorityQueue Returns whe ... ther the queue is empty Ds\PriorityQueue::isEmpty (PECL ds >= 1.0.0) Ds\Prior ... y — Returns whether the queue is empty 説明 public Ds\PriorityQueue::isEmpty (): bool Returns whether th ... rue if the queue is empty, false otherwise. 例 例1 Ds\PriorityQueue::isEmpty() example <?php $a = new \ ... Ds \ PriorityQueue (); $b = new \ Ds \ PriorityQueue (); $a -> push ( "a" , 5 ); $a -> ...
https://man.plustar.jp/php/ds-priorityqueue.isempty.html - [similar]
Pushes values into the queue 5358
« Ds\Queue::pop Ds\Queue::toArray » PHP Manual Queue Pushes values into the queue Ds\Queue::push ... (PECL ds >= 1.0.0) Ds\Queue::push — Pushes values into the ... queue 説明 public Ds\Queue::push ( mixed ...$values ): void Pushes valu ... ush into the queue. 戻り値 値を返しません。 例 例1 Ds\Queue::push() example <?php $queue = new \ Ds \ Qu ... ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Queue Object ( [0] => a [1] => b [2] => c [3] => d ...
https://man.plustar.jp/php/ds-queue.push.html - [similar]
Updates all values by applying a callback function to each value 5358
« Ds\Sequence::allocate Ds\Sequence::capacity » PHP Manual Sequence Updates all values by applyi ... ng a callback function to each value Ds\Sequence::apply (PECL ds >= 1.0.0) Ds\Sequence::ap ... llback function to each value 説明 abstract public Ds\Sequence::apply ( callable $callback ): void Updat ... uld be replaced by. 戻り値 値を返しません。 例 例1 Ds\Sequence::apply() example <?php $sequence = new \ ... ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vector Object ( [0] => 2 [1] => 4 [2] => 6 ) 関連キ ...
https://man.plustar.jp/php/ds-sequence.apply.html - [similar]
Adds values to the end of the sequence 5358
« Ds\Sequence::pop Ds\Sequence::reduce » PHP Manual Sequence Adds values to the end of the seque ... nce Ds\Sequence::push (PECL ds >= 1.0.0) Ds\Sequence::pus ... h — Adds values to the end of the sequence 説明 abstract pu ... blic Ds\Sequence::push ( mixed ...$values ): void Adds val ... The values to add. 戻り値 値を返しません。 例 例1 Ds\Sequence::push() example <?php $sequence = new \ D ...
https://man.plustar.jp/php/ds-sequence.push.html - [similar]
Sorts the sequence in-place 5358
« Ds\Sequence::slice Ds\Sequence::sorted » PHP Manual Sequence Sorts the sequence in-place Ds\Se ... quence::sort (PECL ds >= 1.0.0) Ds\Sequence::sort — Sorts the sequence i ... n-place 説明 abstract public Ds\Sequence::sort ( callable $comparator = ? ): void ... ch values as equal. 戻り値 値を返しません。 例 例1 Ds\Sequence::sort() example <?php $sequence = new \ D ... ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => ...
https://man.plustar.jp/php/ds-sequence.sort.html - [similar]
Adds values to the set 5358
« Set Ds\Set::allocate » PHP Manual Set Adds values to the set Ds\Set::add (PECL ds >= 1.0.0) Ds ... \Set::add — Adds values to the set 説明 public Ds\Set::add ( mixed ... ...$values ): void Adds all given values to the set that haven't already b ... type object are supported. If an object implements Ds\Hashable , equality will be determined by the obje ... s equals function. If an object does not implement Ds\Hashable , objects must be references to the same ...
https://man.plustar.jp/php/ds-set.add.html - [similar]
Removes all given values from the set 5358
« Ds\Set::reduce Ds\Set::reverse » PHP Manual Set Removes all given values from the set Ds\Set:: ... remove (PECL ds >= 1.0.0) Ds\Set::remove — Removes all given value ... s from the set 説明 public Ds\Set::remove ( mixed ...$values ): void Removes all ... e values to remove. 戻り値 値を返しません。 例 例1 Ds\Set::remove() example <?php $set = new \ Ds \ Set ... の例の出力は、 たとえば以下のようになります。 object(Ds\Set)#1 (1) { [0]=> int(5) } 関連キーワード: values ...
https://man.plustar.jp/php/ds-set.remove.html - [similar]
Sorts the set in-place 5358
« Ds\Set::slice Ds\Set::sorted » PHP Manual Set Sorts the set in-place Ds\Set::sort (PECL ds >= ... 1.0.0) Ds\Set::sort — Sorts the set in-place 説明 public Ds\ ... Set::sort ( callable $comparator = ? ): void Sorts the set in-place, using an optional comparato ... ch values as equal. 戻り値 値を返しません。 例 例1 Ds\Set::sort() example <?php $set = new \ Ds \ Set ([ ... ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [ ...
https://man.plustar.jp/php/ds-set.sort.html - [similar]