|
Ds\Deque::filterCreates a new deque using a callable to determine which values to include 説明public Ds\Deque Ds\Deque::filter(callable
$callback = ?)Creates a new deque using a callable to determine which values to include. パラメータ
戻り値
A new deque containing all the values for which
either the 例例1 Ds\Deque::filter example using callback function
上の例の出力は、 たとえば以下のようになります。 object(Ds\Deque)#3 (2) { [0]=> int(2) [1]=> int(4) } 例2 Ds\Deque::filter example without a callback function
上の例の出力は、 たとえば以下のようになります。 object(Ds\Deque)#2 (3) { [0]=> int(1) [1]=> string(1) "a" [2]=> bool(true) } |