Method |
Description |
|
addRange ( array | Traversable $values ) : void |
Adds a range of values to the collection. |
|
append ( $values ) : pinq\ICollection |
{@inheritDoc} |
|
apply ( callable $function ) : void |
Walks the elements with the supplied function. |
|
clear ( ) : void |
Removes all the values. |
|
difference ( $values ) : pinq\ICollection |
{@inheritDoc} |
|
except ( $values ) : pinq\ICollection |
{@inheritDoc} |
|
getSource ( ) : pinq\ICollection |
{@inheritDoc} |
|
groupBy ( callable $function ) : pinq\ICollection |
{@inheritDoc} |
|
groupJoin ( $values ) : Pinq\Interfaces\IJoiningOnCollection |
{@inheritDoc} |
|
indexBy ( callable $function ) : pinq\ICollection |
{@inheritDoc} |
|
intersect ( $values ) : pinq\ICollection |
{@inheritDoc} |
|
join ( $values ) : Pinq\Interfaces\IJoiningOnCollection |
{@inheritDoc} |
|
keys ( ) : pinq\ICollection |
{@inheritDoc} |
|
orderBy ( callable $function, $direction ) : Pinq\Interfaces\IOrderedCollection |
{@inheritDoc} |
|
orderByAscending ( callable $function ) : Pinq\Interfaces\IOrderedCollection |
{@inheritDoc} |
|
orderByDescending ( callable $function ) : Pinq\Interfaces\IOrderedCollection |
{@inheritDoc} |
|
reindex ( ) : pinq\ICollection |
{@inheritDoc} |
|
remove ( mixed $value ) : void |
Removes all occurrences of the supplied value from the collection. |
|
removeRange ( array | Traversable $values ) : void |
Removes all occurrences of the supplied values from the collection. |
|
removeWhere ( callable $predicate ) : void |
Removes all the values matched by the predicate. |
|
select ( callable $function ) : pinq\ICollection |
{@inheritDoc} |
|
selectMany ( callable $function ) : pinq\ICollection |
{@inheritDoc} |
|
skip ( $amount ) : pinq\ICollection |
{@inheritDoc} |
|
slice ( $start, $amount ) : pinq\ICollection |
{@inheritDoc} |
|
take ( $amount ) : pinq\ICollection |
{@inheritDoc} |
|
union ( $values ) : pinq\ICollection |
{@inheritDoc} |
|
unique ( ) : pinq\ICollection |
{@inheritDoc} |
|
where ( callable $predicate ) : pinq\ICollection |
{@inheritDoc} |
|
whereIn ( $values ) : pinq\ICollection |
{@inheritDoc} |
|