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