検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 248 for Ds (0.070 sec.)
Returns whether the queue is empty 5419
« Ds\Queue::count Ds\Queue::jsonSerialize » PHP Manual Queue Returns whether the queue is empty ... Ds\Queue::isEmpty (PECL ds >= 1.0.0) Ds\Queue::isEmpty — Returns whether the ... queue is empty 説明 public Ds\Queue::isEmpty (): bool Returns whether the queue ... rue if the queue is empty, false otherwise. 例 例1 Ds\Queue::isEmpty() example <?php $a = new \ Ds \ Que ... ue ([ 1 , 2 , 3 ]); $b = new \ Ds \ Queue (); var_dump ( $a -> isEmpty ()); var_dump ...
https://man.plustar.jp/php/ds-queue.isempty.html - [similar]
Returns whether the set is empty 5419
« Ds\Set::intersect Ds\Set::join » PHP Manual Set Returns whether the set is empty Ds\Set::isEmp ... ty (PECL ds >= 1.0.0) Ds\Set::isEmpty — Returns whether the se ... t is empty 説明 public Ds\Set::isEmpty (): bool Returns whether the set is e ... true if the set is empty, false otherwise. 例 例1 Ds\Set::isEmpty() example <?php $a = new \ Ds \ Set ( ... [ 1 , 2 , 3 ]); $b = new \ Ds \ Set (); var_dump ( $a -> isEmpty ()); var_dump ( ...
https://man.plustar.jp/php/ds-set.isempty.html - [similar]
Reverses the set in-place 5419
« Ds\Set::remove Ds\Set::reversed » PHP Manual Set Reverses the set in-place Ds\Set::reverse (PE ... CL ds >= 1.0.0) Ds\Set::reverse — Reverses the set in-pl ... ace 説明 public Ds\Set::reverse (): void Reverses the set in-place. パ ... メータはありません。 戻り値 値を返しません。 例 例1 Ds\Set::reverse() example <?php $set = new \ Ds \ Set ... ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Set Object ( [0] => c [1] => b [2] => a ) 関連キー ...
https://man.plustar.jp/php/ds-set.reverse.html - [similar]
Returns whether the stack is empty 5419
« Ds\Stack::count Ds\Stack::jsonSerialize » PHP Manual Stack Returns whether the stack is empty ... Ds\Stack::isEmpty (PECL ds >= 1.0.0) Ds\Stack::isEmpty — Returns whether the ... stack is empty 説明 public Ds\Stack::isEmpty (): bool Returns whether the stack ... rue if the stack is empty, false otherwise. 例 例1 Ds\Stack::isEmpty() example <?php $a = new \ Ds \ Sta ... ck ([ 1 , 2 , 3 ]); $b = new \ Ds \ Stack (); var_dump ( $a -> isEmpty ()); var_dump ...
https://man.plustar.jp/php/ds-stack.isempty.html - [similar]
Returns whether the vector is empty 5419
« Ds\Vector::insert Ds\Vector::join » PHP Manual Vector Returns whether the vector is empty Ds\V ... ector::isEmpty (PECL ds >= 1.0.0) Ds\Vector::isEmpty — Returns whether the ... vector is empty 説明 public Ds\Vector::isEmpty (): bool Returns whether the vecto ... ue if the vector is empty, false otherwise. 例 例1 Ds\Vector::isEmpty() example <?php $a = new \ Ds \ Ve ... ctor ([ 1 , 2 , 3 ]); $b = new \ Ds \ Vector (); var_dump ( $a -> isEmpty ()); var_dum ...
https://man.plustar.jp/php/ds-vector.isempty.html - [similar]
Joins all values together as a string 5388
« Ds\Deque::isEmpty Ds\Deque::jsonSerialize » PHP Manual Deque Joins all values together as a st ... ring Ds\Deque::join (PECL ds >= 1.0.0) Ds\Deque::join — Jo ... ins all values together as a string 説明 public Ds\Deque::join ( string $glue = ? ): string Joins all ... s of the deque joined together as a string. 例 例1 Ds\Deque::join() example using a separator string <?p ... hp $deque = new \ Ds \ Deque ([ "a" , "b" , "c" , 1 , 2 , 3 ]); var_dum ...
https://man.plustar.jp/php/ds-deque.join.html - [similar]
Returns the sum of all values in the deque 5388
« Ds\Deque::sorted Ds\Deque::toArray » PHP Manual Deque Returns the sum of all values in the deq ... ue Ds\Deque::sum (PECL ds >= 1.0.0) Ds\Deque::sum — Retu ... rns the sum of all values in the deque 説明 public Ds\Deque::sum (): int | float Returns the sum of all ... r int depending on the values in the deque. 例 例1 Ds\Deque::sum() integer example <?php $deque = new \ ... の出力は、 たとえば以下のようになります。 int(6) 例2 Ds\Deque::sum() float example <?php $deque = new \ Ds ...
https://man.plustar.jp/php/ds-deque.sum.html - [similar]
Returns whether the map is empty 5388
« Ds\Map::intersect Ds\Map::jsonSerialize » PHP Manual Map Returns whether the map is empty Ds\M ... ap::isEmpty (PECL ds >= 1.0.0) Ds\Map::isEmpty — Returns whether the ma ... p is empty 説明 public Ds\Map::isEmpty (): bool Returns whether the map is e ... true if the map is empty, false otherwise. 例 例1 Ds\Map::isEmpty() example <?php $a = new \ Ds \ Map ( ... [ "a" => 1 , "b" => 2 , "c" => 3 ]); $b = new \ Ds \ Map (); var_dump ( $a -> isEmpty ()); var_dump ( ...
https://man.plustar.jp/php/ds-map.isempty.html - [similar]
Joins all values together as a string 5388
« Ds\Sequence::insert Ds\Sequence::last » PHP Manual Sequence Joins all values together as a str ... ing Ds\Sequence::join (PECL ds >= 1.0.0) Ds\Sequence::joi ... l values together as a string 説明 abstract public Ds\Sequence::join ( string $glue = ? ): string Joins ... f the sequence joined together as a string. 例 例1 Ds\Sequence::join() example using a separator string ... <?php $sequence = new \ Ds \ Vector ([ "a" , "b" , "c" , 1 , 2 , 3 ]); var_du ...
https://man.plustar.jp/php/ds-sequence.join.html - [similar]
Reverses the sequence in-place 5388
« Ds\Sequence::remove Ds\Sequence::reversed » PHP Manual Sequence Reverses the sequence in-place ... Ds\Sequence::reverse (PECL ds >= 1.0.0) Ds\Sequence:: ... everses the sequence in-place 説明 abstract public Ds\Sequence::reverse (): void Reverses the sequence i ... メータはありません。 戻り値 値を返しません。 例 例1 Ds\Sequence::reverse() example <?php $sequence = new ... \ Ds \ Vector ([ "a" , "b" , "c" ]); $sequence -> rever ...
https://man.plustar.jp/php/ds-sequence.reverse.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT