PHP Интерфейс Pinq\Iterators\IJoinIterator

Автор: Elliot Levin ([email protected])
Наследование: extends Pinq\Iterators\IJoinToIterator
Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
filterOn ( callable $function ) : Pinq\Iterators\IJoinToIterator Returns a new join iterator with the inner elements filtered according to the supplied predicate function.
filterOnEquality ( callable $outerKeyFunction, callable $innerKeyFunction ) : Pinq\Iterators\IJoinToIterator Returns a new join iterator with the inner elements filtered according to strict equality between the outer and inner key function.

Описание методов

filterOn() публичный Метод

Returns a new join iterator with the inner elements filtered according to the supplied predicate function.
public filterOn ( callable $function ) : Pinq\Iterators\IJoinToIterator
$function callable Called with the parameters ($outerValue, $innerValue, $outerKey, $innerKey)
Результат Pinq\Iterators\IJoinToIterator

filterOnEquality() публичный Метод

Returns a new join iterator with the inner elements filtered according to strict equality between the outer and inner key function.
public filterOnEquality ( callable $outerKeyFunction, callable $innerKeyFunction ) : Pinq\Iterators\IJoinToIterator
$outerKeyFunction callable Called with the parameters ($outerValue, $outerKey)
$innerKeyFunction callable Called with the parameters ($innerValue, $innerKey)
Результат Pinq\Iterators\IJoinToIterator