$this each(callable $callback) Execute a callback over each item. Parameters callable $callback Return Value $this
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
Collection diff(mixed $items) Get the items in the collection that are not present in the given items. Parameters mixed $items Return Value Collection
int count() Count the number of items in the collection. Return Value int
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
bool contains(mixed $key, mixed $value = null) Determine if an item exists in the collection. Parameters mixed $key mixed $value Return Value bool
Collection combine(mixed $values) Create a collection by using this collection for keys and another for its values. Parameters mixed $values Return Value Collection
Collection collapse() Collapse the collection of items into a single array. Return Value Collection
Collection chunk(int $size) Chunk the underlying collection array. Parameters int $size Return Value Collection
mixed avg(callable|string|null $callback = null) Get the average value of a given key. Parameters callable|string|null $callback Return Value mixed
Page 160 of 996