検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 584 for C (0.022 sec.)
Removes all values 3842
« Ds\Map::capacity Ds\Map::__construct » PHP Manual Map Removes all values Ds\Map::clear (PECL d ... s >= 1.0.0) Ds\Map::clear — Removes all values 説明 public Ds\Map::clear ... ありません。 戻り値 値を返しません。 例 例1 Ds\Map::clear() example <?php $map = new \ Ds \ Map ([ "a" = ... > 1 , "b" => 2 , "c" => 3 , ]); print_r ( $map ); $map -> clear (); pr ... の出力は、 たとえば以下のようになります。 Ds\Map Object ( [0] => Ds\Pair Object ( [key] => a [value] => 1 ...
https://man.plustar.jp/php/ds-map.clear.html - [similar]
Returns a shallow copy of the map 3842
« Ds\Map::__construct Ds\Map::count » PHP Manual Map Returns a shallow copy of the map Ds\Map::c ... opy (PECL ds >= 1.0.0) Ds\Map::copy — Returns a shallow cop ... y of the map 説明 public Ds\Map::copy (): Ds\Map Returns a shallow copy of ... はパラメータはありません。 戻り値 Returns a shallow copy of the map. 例 例1 Ds\Map::copy() example <?php ... $map = new \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 , ]); print_r ( $map -> copy ()); ?> 上の例の ...
https://man.plustar.jp/php/ds-map.copy.html - [similar]
Returns a set of the map's keys 3842
« Ds\Map::jsonSerialize Ds\Map::ksort » PHP Manual Map Returns a set of the map's keys Ds\Map::k ... eys (PECL ds >= 1.0.0) Ds\Map::keys — Returns a set of the ... map's keys 説明 public Ds\Map::keys (): Ds\Set Returns a set containing a ... この関数にはパラメータはありません。 戻り値 A Ds\Set containing all the keys of the map. 例 例1 Ds\Map::k ... hp $map = new \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 ]); var_dump ( $map -> keys ()); ?> 上の例の ...
https://man.plustar.jp/php/ds-map.keys.html - [similar]
Reverses the map in-place 3842
« Ds\Map::remove Ds\Map::reversed » PHP Manual Map Reverses the map in-place Ds\Map::reverse (PE ... >= 1.0.0) Ds\Map::reverse — Reverses the map in-place 説明 public Ds\Map::reverse (): void Reverses the ... map in-place. パラメータ この関数にはパラメータはありません。 ... hp $map = new \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 ]); $map -> reverse (); print_r ( $map ); ?> ... の出力は、 たとえば以下のようになります。 Ds\Map Object ( [0] => Ds\Pair Object ( [key] => c [value] => 3 ...
https://man.plustar.jp/php/ds-map.reverse.html - [similar]
Returns a reversed copy 3842
« Ds\Map::reverse Ds\Map::skip » PHP Manual Map Returns a reversed copy Ds\Map::reversed (PECL d ... s >= 1.0.0) Ds\Map::reversed — Returns a reversed copy 説明 public Ds\Map::reversed (): Ds\Map Returns ... a reversed copy of the map. パラメータ この関数にはパラメータは ... ありません。 戻り値 A reversed copy of the map. 注意 : The current instance is not ... affected. 例 例1 Ds\Map::reversed() example <?php $map = ...
https://man.plustar.jp/php/ds-map.reversed.html - [similar]
Pushes values into the queue 3842
« Ds\PriorityQueue::pop Ds\PriorityQueue::toArray » PHP Manual PriorityQueue Pushes values into ... the queue Ds\PriorityQueue::push (PECL ds >= 1.0.0) Ds\PriorityQueue::push — Pushes valu ... es into the queue 説明 public Ds\PriorityQueue::push ( mixed $value , int $prior ... to push into the queue. priority The priority associated with the value. 戻り値 値を返しません。 例 例 ... ); $queue -> push ( "b" , 15 ); $queue -> push ( "c" , 10 ); print_r ( $queue -> pop ()); print_r ( $q ...
https://man.plustar.jp/php/ds-priorityqueue.push.html - [similar]
Converts the queue to an array 3842
« Ds\PriorityQueue::push var_representation » PHP Manual PriorityQueue Converts the queue to an ... array Ds\PriorityQueue::toArray (PECL ds >= 1.0.0) Ds\PriorityQueue::toArray — Converts ... the queue to an array 説明 public Ds\PriorityQueue::toArray (): array Converts the q ... ueue to an array . 注意 : This method is not destructive. 注意 : Casting to an array is not supported y ... この関数にはパラメータはありません。 戻り値 An array containing all the values in the same order as the q ...
https://man.plustar.jp/php/ds-priorityqueue.toarray.html - [similar]
Removes and returns the value at the front of the queue 3842
« Ds\Queue::peek Ds\Queue::push » PHP Manual Queue Removes and returns the value at the front of ... the queue Ds\Queue::pop (PECL ds >= 1.0.0) Ds\Queue::pop — Removes and returns ... the value at the front of the queue 説明 public Ds\Queue::pop (): mixed Removes and returns the va ... パラメータはありません。 戻り値 The removed value which was at the front of the queue. エラー / 例外 Unde ... rflowException if empty. 例 例1 Ds\Queue::pop() example <?p ...
https://man.plustar.jp/php/ds-queue.pop.html - [similar]
Adds values to the end of the sequence 3842
« 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: ... :push — Adds values to the end of the sequence 説明 abstract public Ds\Sequence::push ( mixed .. ... values ): void Adds values to the end of the sequence. パラメータ values The values to add. 戻り値 値を ... 返しません。 例 例1 Ds\Sequence::push() example <?php $sequence = new \ Ds \ Vect ...
https://man.plustar.jp/php/ds-sequence.push.html - [similar]
Adds values to the front of the sequence 3842
« Ds\Sequence::sum Vector » PHP Manual Sequence Adds values to the front of the sequence Ds\Sequ ... ence::unshift (PECL ds >= 1.0.0) Ds\Sequence::unshift ... — Adds values to the front of the sequence 説明 abstract public Ds\Sequence::unshift ( mixed ... = ? ): void Adds values to the front of the sequence, moving all the current values forward to make ro ... values The values to add to the front of the sequence. 注意 : Multiple values will be added in the same ...
https://man.plustar.jp/php/ds-sequence.unshift.html - [similar]