Ds\Sequence::filter

(PECL ds >= 1.0.0)

Ds\Sequence::filter Creates a new sequence using a callable to determine which values to include.

설명

abstract public Ds\Sequence Ds\Sequence::filter ([ callable $callback ] )

Creates a new sequence using a callable to determine which values to include.

인수

callback

bool callback ( mixed $value )

Optional callable which returns TRUE if the value should be included, FALSE otherwise.

If a callback is not provided, only values which are TRUE (see converting to boolean) will be included.

반환값

A new sequence containing all the values for which either the callback returned TRUE, or all values that convert to TRUE if a callback was not provided.

예제

Example #1 Ds\Sequence::filter() example using callback function

<?php
$sequence 
= new \Ds\Vector([12345]);

var_dump($sequence->filter(function($value) {
    return 
$value == 0;
}));
?>

위 예제의 출력 예시:

object(Ds\Vector)#3 (2) {
  [0]=>
  int(2)
  [1]=>
  int(4)
}

Example #2 Ds\Sequence::filter() example without a callback function

<?php
$sequence 
= new \Ds\Vector([01'a'truefalse]);

var_dump($sequence->filter());
?>

위 예제의 출력 예시:

object(Ds\Vector)#2 (3) {
  [0]=>
  int(1)
  [1]=>
  string(1) "a"
  [2]=>
  bool(true)
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top