SortedMiddleware::each()

$this each(callable $callback) Execute a callback over each item. Parameters callable $callback Return Value $this

SortedMiddleware::diffKeys()

Collection diffKeys(mixed $items) Get the items in the collection whose keys are not present in the given items. Parameters mixed $items Return Value Collection

SortedMiddleware::diff()

Collection diff(mixed $items) Get the items in the collection that are not present in the given items. Parameters mixed $items Return Value Collection

SortedMiddleware::count()

int count() Count the number of items in the collection. Return Value int

SortedMiddleware::containsStrict()

bool containsStrict(mixed $key, mixed $value = null) Determine if an item exists in the collection using strict comparison. Parameters mixed $key mixed $value Return Value bool

SortedMiddleware::contains()

bool contains(mixed $key, mixed $value = null) Determine if an item exists in the collection. Parameters mixed $key mixed $value Return Value bool

SortedMiddleware::combine()

Collection combine(mixed $values) Create a collection by using this collection for keys and another for its values. Parameters mixed $values Return Value Collection

SortedMiddleware::collapse()

Collection collapse() Collapse the collection of items into a single array. Return Value Collection

SortedMiddleware::chunk()

Collection chunk(int $size) Chunk the underlying collection array. Parameters int $size Return Value Collection

SortedMiddleware::avg()

mixed avg(callable|string|null $callback = null) Get the average value of a given key. Parameters callable|string|null $callback Return Value mixed