Results of 61 - 70 of about 248 for Ds (0.005 sec.)
- Creates a new sequence using a callable to determine which values to include 5519
- « Ds\Sequence::contains Ds\Sequence::find » PHP Manual Sequence Creates a new sequence using a c
...
allable to determine which values to include Ds\Sequence::filter (PECL ds >= 1.0.0) Ds\Sequence::f ...
rmine which values to include 説明 abstract public Ds\Sequence::filter ( callable $callback = ? ): Ds\Se ...
ert to true if a callback was not provided. 例 例1 Ds\Sequence::filter() example using callback function ...
<?php $sequence = new \ Ds \ Vector ([ 1 , 2 , 3 , 4 , 5 ]); var_dump ( $sequ ...
-
https://man.plustar.jp/php/ds-sequence.filter.html
- [similar]
- Returns a sub-sequence of a given range 5519
- « Ds\Sequence::shift Ds\Sequence::sort » PHP Manual Sequence Returns a sub-sequence of a given r
...
ange Ds\Sequence::slice (PECL ds >= 1.0.0) Ds\Sequence::sl ...
sub-sequence of a given range 説明 abstract public Ds\Sequence::slice ( int $index , int $length = ? ): ...
. 戻り値 A sub-sequence of the given range. 例 例1 Ds\Sequence::slice() example <?php $sequence = new \ ...
" , "b" , "c" , "d" , "e" ]); // Slice from 2 onwards print_r ( $sequence -> slice ( 2 )); // Slice from ...
-
https://man.plustar.jp/php/ds-sequence.slice.html
- [similar]
- Removes all values 5519
- « Ds\Set::capacity Ds\Set::__construct » PHP Manual Set Removes all values Ds\Set::clear (PECL ds
...
s >= 1.0.0) Ds\Set::clear — Removes all values 説明 public Ds\Set ...
メータはありません。 戻り値 値を返しません。 例 例1 Ds\Set::clear() example <?php $set = new \ Ds \ Set ( ...
?> 上の例の出力は、 たとえば以下のようになります。 Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Set O ...
( ) 関連キーワード: Set , Removes , all , values , Ds , パラメータ , Object , capacity , construct , pub ...
-
https://man.plustar.jp/php/ds-set.clear.html
- [similar]
- Creates a new set using a callable to determine which values to include 5519
- « Ds\Set::diff Ds\Set::first » PHP Manual Set Creates a new set using a callable to determine wh
...
ich values to include Ds\Set::filter (PECL ds >= 1.0.0) Ds\Set::filter — Cr ...
e to determine which values to include 説明 public Ds\Set::filter ( callable $callback = ? ): Ds\Set Cre ...
ert to true if a callback was not provided. 例 例1 Ds\Set::filter() example using callback function <?ph ...
p $set = new \ Ds \ Set ([ 1 , 2 , 3 , 4 , 5 ]); var_dump ( $set -> ...
-
https://man.plustar.jp/php/ds-set.filter.html
- [similar]
- Returns a sub-set of a given range 5519
- « Ds\Set::reversed Ds\Set::sort » PHP Manual Set Returns a sub-set of a given range Ds\Set::slic
...
e (PECL ds >= 1.0.0) Ds\Set::slice — Returns a sub-set of a g ...
iven range 説明 public Ds\Set::slice ( int $index , int $length = ? ): Ds\Se ...
e set. 戻り値 A sub-set of the given range. 例 例1 Ds\Set::slice() example <?php $set = new \ Ds \ Set ( ...
" , "b" , "c" , "d" , "e" ]); // Slice from 2 onwards print_r ( $set -> slice ( 2 )); // Slice from 1, f ...
-
https://man.plustar.jp/php/ds-set.slice.html
- [similar]
- Removes all values 5519
- « Ds\Stack::capacity Ds\Stack::__construct » PHP Manual Stack Removes all values Ds\Stack::clear
...
(PECL ds >= 1.0.0) Ds\Stack::clear — Removes all values 説明 ...
public Ds\Stack::clear (): void Removes all values from the ...
メータはありません。 戻り値 値を返しません。 例 例1 Ds\Stack::clear() example <?php $stack = new \ Ds \ S ...
?> 上の例の出力は、 たとえば以下のようになります。 Ds\Stack Object ( [0] => 3 [1] => 2 [2] => 1 ) Ds\Sta ...
-
https://man.plustar.jp/php/ds-stack.clear.html
- [similar]
- Removes all values 5519
- « Ds\Vector::capacity Ds\Vector::__construct » PHP Manual Vector Removes all values Ds\Vector::c
...
lear (PECL ds >= 1.0.0) Ds\Vector::clear — Removes all values 説 ...
明 public Ds\Vector::clear (): void Removes all values from the ...
メータはありません。 戻り値 値を返しません。 例 例1 Ds\Vector::clear() example <?php $vector = new \ Ds \ ...
?> 上の例の出力は、 たとえば以下のようになります。 Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Ve ...
-
https://man.plustar.jp/php/ds-vector.clear.html
- [similar]
- Creates a new vector using a callable to determine which values to include 5519
- « Ds\Vector::count Ds\Vector::find » PHP Manual Vector Creates a new vector using a callable to
...
determine which values to include Ds\Vector::filter (PECL ds >= 1.0.0) Ds\Vector::filte ...
e to determine which values to include 説明 public Ds\Vector::filter ( callable $callback = ? ): Ds\Vect ...
ert to true if a callback was not provided. 例 例1 Ds\Vector::filter() example using callback function < ...
?php $vector = new \ Ds \ Vector ([ 1 , 2 , 3 , 4 , 5 ]); var_dump ( $vect ...
-
https://man.plustar.jp/php/ds-vector.filter.html
- [similar]
- Returns a sub-vector of a given range 5519
- « Ds\Vector::shift Ds\Vector::sort » PHP Manual Vector Returns a sub-vector of a given range Ds\
...
Vector::slice (PECL ds >= 1.0.0) Ds\Vector::slice — Returns a sub-vector ...
of a given range 説明 public Ds\Vector::slice ( int $index , int $length = ? ): Ds ...
or. 戻り値 A sub-vector of the given range. 例 例1 Ds\Vector::slice() example <?php $vector = new \ Ds \ ...
" , "b" , "c" , "d" , "e" ]); // Slice from 2 onwards print_r ( $vector -> slice ( 2 )); // Slice from 1 ...
-
https://man.plustar.jp/php/ds-vector.slice.html
- [similar]
- Returns the result of applying a callback to each value 5479
- « Ds\Deque::last Ds\Deque::merge » PHP Manual Deque Returns the result of applying a callback to
...
each value Ds\Deque::map (PECL ds >= 1.0.0) Ds\Deque::map — Retu ...
t of applying a callback to each value 説明 public Ds\Deque::map ( callable $callback ): Ds\Deque Return ...
of the current instance won't be affected. 例 例1 Ds\Deque::map() example <?php $deque = new \ Ds \ Deq ...
?> 上の例の出力は、 たとえば以下のようになります。 Ds\Deque Object ( [0] => 2 [1] => 4 [2] => 6 ) Ds\Deq ...
-
https://man.plustar.jp/php/ds-deque.map.html
- [similar]