PHP » GoLang |
login |
register |
about
|
GoLang Ds\Sequence::filter
request it (568)
GoLang replacement for PHP's Ds\Sequence::filter
[edit | history]
Ds\Sequence::filter(PECL ds >= 1.0.0) Ds\Sequence::filter — Creates a new sequence using a callable to determine which values to include DescriptionCreates a new sequence using a callable to determine which values to include. Parameters
Return Values
A new sequence containing all the values for which
either the ExamplesExample #1 Ds\Sequence::filter() example using callback function
<?phpThe above example will output something similar to:
object(Ds\Vector)#3 (2) {
[0]=>
int(2)
[1]=>
int(4)
}
Example #2 Ds\Sequence::filter() example without a callback function
<?phpThe above example will output something similar to:
object(Ds\Vector)#2 (3) {
[0]=>
int(1)
[1]=>
string(1) "a"
[2]=>
bool(true)
}
|
more
Most requested
more
Last requests
|