検索

phrase: max: clip:
target: order:
Results of 651 - 660 of about 2650 for 上の (0.099 sec.)
Removes and returns the value with the highest priority 2128
« Ds\PriorityQueue::peek Ds\PriorityQueue::push » PHP Manual PriorityQueue Removes and returns t ... $queue -> pop ()); print_r ( $queue -> pop ()); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-priorityqueue.pop.html - [similar]
Pushes values into the queue 2128
« Ds\PriorityQueue::pop Ds\PriorityQueue::toArray » PHP Manual PriorityQueue Pushes values into ... $queue -> pop ()); print_r ( $queue -> pop ()); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-priorityqueue.push.html - [similar]
Converts the queue to an array 2128
« Ds\PriorityQueue::push var_representation » PHP Manual PriorityQueue Converts the queue to an ... ( "c" , 10 ); var_dump ( $queue -> toArray ()); ?> 上の例の出力は、 たとえば以下のようになります。 array(3) ...
https://man.plustar.jp/php/ds-priorityqueue.toarray.html - [similar]
Allocates enough memory for a required capacity 2128
« Queue Ds\Queue::capacity » PHP Manual Queue Allocates enough memory for a required capacity Ds ... ate ( 100 ); var_dump ( $queue -> capacity ()); ?> 上の例の出力は、 たとえば以下のようになります。 int(8) i ...
https://man.plustar.jp/php/ds-queue.allocate.html - [similar]
Returns a shallow copy of the queue 2128
« Ds\Queue::__construct Ds\Queue::count » PHP Manual Queue Returns a shallow copy of the queue D ... -> push ( 4 ); print_r ( $a ); print_r ( $b ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Queue ...
https://man.plustar.jp/php/ds-queue.copy.html - [similar]
Removes and returns the value at the front of the queue 2128
« Ds\Queue::peek Ds\Queue::push » PHP Manual Queue Removes and returns the value at the front of ... queue -> pop ()); var_dump ( $queue -> pop ()); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-queue.pop.html - [similar]
Updates all values by applying a callback function to each value 2128
« Ds\Sequence::allocate Ds\Sequence::capacity » PHP Manual Sequence Updates all values by applyi ... return $value * 2 ; }); print_r ( $sequence ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ...
https://man.plustar.jp/php/ds-sequence.apply.html - [similar]
Attempts to find a value's index 2128
« Ds\Sequence::filter Ds\Sequence::first » PHP Manual Sequence Attempts to find a value's index ... false var_dump ( $sequence -> find ( 1 )); // 1 ?> 上の例の出力は、 たとえば以下のようになります。 int(0) b ...
https://man.plustar.jp/php/ds-sequence.find.html - [similar]
Returns the result of applying a callback to each value 2128
« Ds\Sequence::last Ds\Sequence::merge » PHP Manual Sequence Returns the result of applying a ca ... return $value * 2 ; })); print_r ( $sequence ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ...
https://man.plustar.jp/php/ds-sequence.map.html - [similar]
Adds values to the end of the sequence 2128
« Ds\Sequence::pop Ds\Sequence::reduce » PHP Manual Sequence Adds values to the end of the seque ... push (...[ "e" , "f" ]); print_r ( $sequence ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vecto ...
https://man.plustar.jp/php/ds-sequence.push.html - [similar]