SortedMiddleware::toBase()

Collection toBase() Get a base Support collection instance from this collection. Return Value Collection

SortedMiddleware::toArray()

array toArray() Get the collection of items as a plain array. Return Value array

SortedMiddleware::take()

Collection take(int $limit) Take the first or last {$limit} items. Parameters int $limit Return Value Collection

SortedMiddleware::sum()

mixed sum(callable|string|null $callback = null) Get the sum of the given values. Parameters callable|string|null $callback Return Value mixed

SortedMiddleware::split()

Collection split(int $numberOfGroups) Split a collection into a certain number of groups. Parameters int $numberOfGroups Return Value Collection

SortedMiddleware::splice()

Collection splice(int $offset, int|null $length = null, mixed $replacement = array()) Splice a portion of the underlying collection array. Parameters int $offset int|null $length mixed $replacement Return Value Collection

SortedMiddleware::sortByDesc()

Collection sortByDesc(callable|string $callback, int $options = SORT_REGULAR) Sort the collection in descending order using the given callback. Parameters callable|string $callback int $options Return Value Collection

SortedMiddleware::sortBy()

Collection sortBy(callable|string $callback, int $options = SORT_REGULAR, bool $descending = false) Sort the collection using the given callback. Parameters callable|string $callback int $options bool $descending Return Value Collection

SortedMiddleware::sort()

Collection sort(callable $callback = null) Sort through each item with a callback. Parameters callable $callback Return Value Collection

SortedMiddleware::slice()

Collection slice(int $offset, int $length = null) Slice the underlying collection array. Parameters int $offset int $length Return Value Collection