Methods |
public
|
__construct(
Arrayable<TKey, TValue>|iterable<TKey, TValue>|(Closure(): Generator<TKey, TValue, mixed, void>)|self<TKey, TValue>|array<TKey, TValue>|null $source = null,
): void
Create a new lazy collection instance.
Create a new lazy collection instance.
|
#
|
public
static
|
make<TMakeKey is array-key, TMakeValue>(
Arrayable<TMakeKey, TMakeValue>|iterable<TMakeKey, TMakeValue>|(Closure(): Generator<TMakeKey, TMakeValue, mixed, void>)|self<TMakeKey, TMakeValue>|array<TMakeKey, TMakeValue>|null $items = [],
): static<TMakeKey, TMakeValue>
Create a new collection instance if the value isn't one already.
Create a new collection instance if the value isn't one already.
Implements
|
#
|
public
static
|
range(int $from, int $to, int $step = 1): static<int, int>
Create a collection with the given range.
Create a collection with the given range.
Implements
|
#
|
public
|
all(): array<TKey, TValue>
Get all items in the enumerable.
Get all items in the enumerable.
Implements
|
#
|
public
|
eager(): static
Eager load all items into a new lazy collection backed by an array.
Eager load all items into a new lazy collection backed by an array.
|
#
|
public
|
remember(): static
Cache values as they're enumerated.
Cache values as they're enumerated.
|
#
|
public
|
median(string|array<array-key, string>|null $key = null): float|int|null
Get the median of a given key.
Get the median of a given key.
Implements
|
#
|
public
|
mode(string|array<string>|null $key = null): array<int, float|int>|null
Get the mode of a given key.
Get the mode of a given key.
Implements
|
#
|
public
|
collapse(): static<int, mixed>
Collapse the collection of items into a single array.
Collapse the collection of items into a single array.
Implements
|
#
|
public
|
collapseWithKeys(): static<mixed, mixed>
Collapse the collection of items into a single array while preserving its keys.
Collapse the collection of items into a single array while preserving its keys.
|
#
|
public
|
contains((callable(TValue, TKey): bool)|TValue|string $key, mixed $operator = null, mixed $value = null): bool
Determine if an item exists in the enumerable.
Determine if an item exists in the enumerable.
Implements
|
#
|
public
|
containsStrict((callable(TValue): bool)|TValue|array-key $key, TValue|null $value = null): bool
Determine if an item exists, using strict comparison.
Determine if an item exists, using strict comparison.
Implements
|
#
|
public
|
doesntContain(mixed $key, mixed $operator = null, mixed $value = null): bool
Determine if an item is not contained in the enumerable.
Determine if an item is not contained in the enumerable.
Implements
|
#
|
public
|
crossJoin<TCrossJoinKey, TCrossJoinValue>(
Arrayable<TCrossJoinKey, TCrossJoinValue>|iterable<TCrossJoinKey, TCrossJoinValue> ...$arrays,
): static<int, array<int, TValue|TCrossJoinValue>>
Cross join the given iterables, returning all possible permutations.
Cross join the given iterables, returning all possible permutations.
Implements
|
#
|
public
|
countBy((callable(TValue, TKey): array-key)|string|null $countBy = null): static<array-key, int>
Count the number of items in the collection by a field or using a callback.
Count the number of items in the collection by a field or using a callback.
Implements
|
#
|
public
|
diff(Arrayable<array-key, TValue>|iterable<array-key, TValue> $items): static
Get the items that are not present in the given items.
Get the items that are not present in the given items.
Implements
|
#
|
public
|
diffUsing(
Arrayable<array-key, TValue>|iterable<array-key, TValue> $items,
callable(TValue, TValue): int $callback,
): static
Get the items that are not present in the given items, using the callback.
Get the items that are not present in the given items, using the callback.
Implements
|
#
|
public
|
diffAssoc(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Get the items whose keys and values are not present in the given items.
Get the items whose keys and values are not present in the given items.
Implements
|
#
|
public
|
diffAssocUsing(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items, callable(TKey, TKey): int $callback): static
Get the items whose keys and values are not present in the given items, using the callback.
Get the items whose keys and values are not present in the given items, using the callback.
Implements
|
#
|
public
|
diffKeys(Arrayable<TKey, mixed>|iterable<TKey, mixed> $items): static
Get the items whose keys are not present in the given items.
Get the items whose keys are not present in the given items.
Implements
|
#
|
public
|
diffKeysUsing(Arrayable<TKey, mixed>|iterable<TKey, mixed> $items, callable(TKey, TKey): int $callback): static
Get the items whose keys are not present in the given items, using the callback.
Get the items whose keys are not present in the given items, using the callback.
Implements
|
#
|
public
|
duplicates<TMapValue>((callable(TValue): TMapValue)|string|null $callback = null, bool $strict = false): static
Retrieve duplicate items.
Retrieve duplicate items.
Implements
|
#
|
public
|
duplicatesStrict<TMapValue>((callable(TValue): TMapValue)|string|null $callback = null): static
Retrieve duplicate items using strict comparison.
Retrieve duplicate items using strict comparison.
Implements
|
#
|
public
|
except(Enumerable<array-key, TKey>|array<array-key, TKey> $keys): static
Get all items except for those with the specified keys.
Get all items except for those with the specified keys.
Implements
|
#
|
public
|
filter((callable(TValue, TKey): bool)|null $callback = null): static
Run a filter over each of the items.
Run a filter over each of the items.
Implements
|
#
|
public
|
first<TFirstDefault>(
(callable(TValue): bool)|null $callback = null,
TFirstDefault|(Closure(): TFirstDefault) $default = null,
): TValue|TFirstDefault
Get the first item from the enumerable passing the given truth test.
Get the first item from the enumerable passing the given truth test.
Implements
|
#
|
public
|
flatten(int $depth = INF): static<int, mixed>
Get a flattened list of the items in the collection.
Get a flattened list of the items in the collection.
Implements
|
#
|
public
|
flip(): static<TValue, TKey>
Flip the items in the collection.
Flip the items in the collection.
Implements
|
#
|
public
|
get<TGetDefault>(TKey|null $key, TGetDefault|(Closure(): TGetDefault) $default = null): TValue|TGetDefault
Get an item by key.
|
#
|
public
|
groupBy<TGroupKey is array-key>(
(callable(TValue, TKey): TGroupKey)|array|string $groupBy,
bool $preserveKeys = false,
): static<($groupBy is string ? array-key : ($groupBy is array ? array-key : TGroupKey)), static<($preserveKeys is true ? TKey : int), ($groupBy is array ? mixed : TValue)>>
Group an associative array by a field or using a callback.
Group an associative array by a field or using a callback.
Implements
|
#
|
public
|
keyBy<TNewKey is array-key>(
(callable(TValue, TKey): TNewKey)|array|string $keyBy,
): static<($keyBy is string ? array-key : ($keyBy is array ? array-key : TNewKey)), TValue>
Key an associative array by a field or using a callback.
Key an associative array by a field or using a callback.
Implements
|
#
|
public
|
has(mixed $key): bool
Determine if an item exists in the collection by key.
Determine if an item exists in the collection by key.
Implements
|
#
|
public
|
hasAny(mixed $key): bool
Determine if any of the keys exist in the collection.
Determine if any of the keys exist in the collection.
Implements
|
#
|
public
|
implode((callable(TValue, TKey): mixed)|string $value, string|null $glue = null): string
Concatenate values of a given key as a string.
Concatenate values of a given key as a string.
Implements
|
#
|
public
|
intersect(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Intersect the collection with the given items.
Intersect the collection with the given items.
Implements
|
#
|
public
|
intersectUsing(
Arrayable<array-key, TValue>|iterable<array-key, TValue> $items,
callable(TValue, TValue): int $callback,
): static
Intersect the collection with the given items, using the callback.
Intersect the collection with the given items, using the callback.
Implements
|
#
|
public
|
intersectAssoc(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Intersect the collection with the given items with additional index check.
Intersect the collection with the given items with additional index check.
Implements
|
#
|
public
|
intersectAssocUsing(
Arrayable<array-key, TValue>|iterable<array-key, TValue> $items,
callable(TValue, TValue): int $callback,
): static
Intersect the collection with the given items with additional index check, using the callback.
Intersect the collection with the given items with additional index check, using the callback.
Implements
|
#
|
public
|
intersectByKeys(Arrayable<TKey, mixed>|iterable<TKey, mixed> $items): static
Intersect the collection with the given items by key.
Intersect the collection with the given items by key.
Implements
|
#
|
public
|
isEmpty(): bool
Determine if the items are empty or not.
Determine if the items are empty or not.
Implements
|
#
|
public
|
containsOneItem(): bool
Determine if the collection contains a single item.
Determine if the collection contains a single item.
Implements
|
#
|
public
|
join(string $glue, string $finalGlue = ''): string
Join all items from the collection using a string. The final items can use a separate glue string.
Join all items from the collection using a string. The final items can use a separate glue string.
Implements
|
#
|
public
|
keys(): static<int, TKey>
Get the keys of the collection items.
Get the keys of the collection items.
Implements
|
#
|
public
|
last<TLastDefault>(
(callable(TValue, TKey): bool)|null $callback = null,
TLastDefault|(Closure(): TLastDefault) $default = null,
): TValue|TLastDefault
Get the last item from the collection.
Get the last item from the collection.
Implements
|
#
|
public
|
pluck(string|array<array-key, string> $value, string|null $key = null): static<array-key, mixed>
Get the values of a given key.
Get the values of a given key.
Implements
|
#
|
public
|
map<TMapValue>(callable(TValue, TKey): TMapValue $callback): static<TKey, TMapValue>
Run a map over each of the items.
Run a map over each of the items.
Implements
|
#
|
public
|
mapToDictionary<TMapToDictionaryKey is array-key, TMapToDictionaryValue>(
callable(TValue, TKey): array<TMapToDictionaryKey, TMapToDictionaryValue> $callback,
): static<TMapToDictionaryKey, array<int, TMapToDictionaryValue>>
Run a dictionary map over the items.
Run a dictionary map over the items.
The callback should return an associative array with a single key/value pair.
Implements
|
#
|
public
|
mapWithKeys<TMapWithKeysKey is array-key, TMapWithKeysValue>(
callable(TValue, TKey): array<TMapWithKeysKey, TMapWithKeysValue> $callback,
): static<TMapWithKeysKey, TMapWithKeysValue>
Run an associative map over each of the items.
Run an associative map over each of the items.
The callback should return an associative array with a single key/value pair.
Implements
|
#
|
public
|
merge(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Merge the collection with the given items.
Merge the collection with the given items.
Implements
|
#
|
public
|
mergeRecursive<TMergeRecursiveValue>(
Arrayable<TKey, TMergeRecursiveValue>|iterable<TKey, TMergeRecursiveValue> $items,
): static<TKey, TValue|TMergeRecursiveValue>
Recursively merge the collection with the given items.
Recursively merge the collection with the given items.
Implements
|
#
|
public
|
multiply(int $multiplier): static
Multiply the items in the collection by the multiplier.
Multiply the items in the collection by the multiplier.
|
#
|
public
|
combine<TCombineValue>(
IteratorAggregate<array-key, TCombineValue>|array<array-key, TCombineValue>|(callable(): Generator<array-key, TCombineValue>) $values,
): static<TValue, TCombineValue>
Create a collection by using this collection for keys and another for its values.
Create a collection by using this collection for keys and another for its values.
Implements
|
#
|
public
|
union(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Union the collection with the given items.
Union the collection with the given items.
Implements
|
#
|
public
|
nth(int $step, int $offset = 0): static
Create a new collection consisting of every n-th element.
Create a new collection consisting of every n-th element.
Implements
|
#
|
public
|
only(Enumerable<array-key, TKey>|array<array-key, TKey>|string $keys): static
Get the items with the specified keys.
Get the items with the specified keys.
Implements
|
#
|
public
|
select(Enumerable<array-key, TKey>|array<array-key, TKey>|string $keys): static
Select specific values from the items within the collection.
Select specific values from the items within the collection.
|
#
|
public
|
concat<TConcatKey is array-key, TConcatValue>(
iterable<TConcatKey, TConcatValue> $source,
): static<TKey|TConcatKey, TValue|TConcatValue>
Push all of the given items onto the collection.
Push all of the given items onto the collection.
Implements
|
#
|
public
|
random(int|null $number = null): static<int, TValue>|TValue
Get one or a specified number of items randomly from the collection.
Get one or a specified number of items randomly from the collection.
Throws
Implements
|
#
|
public
|
replace(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Replace the collection items with the given items.
Replace the collection items with the given items.
Implements
|
#
|
public
|
replaceRecursive(Arrayable<TKey, TValue>|iterable<TKey, TValue> $items): static
Recursively replace the collection items with the given items.
Recursively replace the collection items with the given items.
Implements
|
#
|
public
|
reverse(): static
Reverse items order.
|
#
|
public
|
search(TValue|(callable(TValue, TKey): bool) $value, bool $strict = false): TKey|false
Search the collection for a given value and return the corresponding key if successful.
Search the collection for a given value and return the corresponding key if successful.
Implements
|
#
|
public
|
before(TValue|(callable(TValue, TKey): bool) $value, bool $strict = false): TValue|null
Get the item before the given item.
Get the item before the given item.
Implements
|
#
|
public
|
after(TValue|(callable(TValue, TKey): bool) $value, bool $strict = false): TValue|null
Get the item after the given item.
Get the item after the given item.
Implements
|
#
|
public
|
shuffle(): static
Shuffle the items in the collection.
Shuffle the items in the collection.
Implements
|
#
|
public
|
sliding(int $size = 2, int $step = 1): static<int, static>
Create chunks representing a "sliding window" view of the items in the collection.
Create chunks representing a "sliding window" view of the items in the collection.
Implements
|
#
|
public
|
skip(int $count): static
Skip the first {$count} items.
Skip the first {$count} items.
Implements
|
#
|
public
|
skipUntil(TValue|(callable(TValue, TKey): bool) $value): static
Skip items in the collection until the given condition is met.
Skip items in the collection until the given condition is met.
Implements
|
#
|
public
|
skipWhile(TValue|(callable(TValue, TKey): bool) $value): static
Skip items in the collection while the given condition is met.
Skip items in the collection while the given condition is met.
Implements
|
#
|
public
|
slice(int $offset, int|null $length = null): static
Get a slice of items from the enumerable.
Get a slice of items from the enumerable.
Implements
|
#
|
public
|
split(int $numberOfGroups): static<int, static>
Split a collection into a certain number of groups.
Split a collection into a certain number of groups.
Implements
|
#
|
public
|
sole((callable(TValue, TKey): bool)|string $key = null, mixed $operator = null, mixed $value = null): TValue
Get the first item in the collection, but only if exactly one item exists. Otherwise, throw an exception.
Get the first item in the collection, but only if exactly one item exists. Otherwise, throw an exception.
Throws
Implements
|
#
|
public
|
firstOrFail((callable(TValue, TKey): bool)|string $key = null, mixed $operator = null, mixed $value = null): TValue
Get the first item in the collection but throw an exception if no matching items exist.
Get the first item in the collection but throw an exception if no matching items exist.
Throws
Implements
|
#
|
public
|
chunk(
int $size,
bool $preserveKeys = true,
): ($preserveKeys is true ? static<int, static> : static<int, static<int, TValue>>)
Chunk the collection into chunks of the given size.
Chunk the collection into chunks of the given size.
Implements
|
#
|
public
|
splitIn(int $numberOfGroups): static<int, static>
Split a collection into a certain number of groups, and fill the first groups completely.
Split a collection into a certain number of groups, and fill the first groups completely.
Implements
|
#
|
public
|
chunkWhile(callable(TValue, TKey, Collection<TKey, TValue>): bool $callback): static<int, static<int, TValue>>
Chunk the collection into chunks with a callback.
Chunk the collection into chunks with a callback.
Implements
|
#
|
public
|
sort((callable(TValue, TValue): int)|null|int $callback = null): static
Sort through each item with a callback.
Sort through each item with a callback.
Implements
|
#
|
public
|
sortDesc(int $options = SORT_REGULAR): static
Sort items in descending order.
Sort items in descending order.
Implements
|
#
|
public
|
sortBy(
array<array-key, (callable(TValue, TValue): mixed)|(callable(TValue, TKey): mixed)|string|array{string, string}>|(callable(TValue, TKey): mixed)|string $callback,
int $options = SORT_REGULAR,
bool $descending = false,
): static
Sort the collection using the given callback.
Sort the collection using the given callback.
Implements
|
#
|
public
|
sortByDesc(
array<array-key, (callable(TValue, TValue): mixed)|(callable(TValue, TKey): mixed)|string|array{string, string}>|(callable(TValue, TKey): mixed)|string $callback,
int $options = SORT_REGULAR,
): static
Sort the collection in descending order using the given callback.
Sort the collection in descending order using the given callback.
Implements
|
#
|
public
|
sortKeys(int $options = SORT_REGULAR, bool $descending = false): static
Sort the collection keys.
Sort the collection keys.
Implements
|
#
|
public
|
sortKeysDesc(int $options = SORT_REGULAR): static
Sort the collection keys in descending order.
Sort the collection keys in descending order.
Implements
|
#
|
public
|
sortKeysUsing(callable(TKey, TKey): int $callback): static
Sort the collection keys using a callback.
Sort the collection keys using a callback.
Implements
|
#
|
public
|
take(int $limit): static
Take the first or last {$limit} items.
Take the first or last {$limit} items.
Implements
|
#
|
public
|
takeUntil(TValue|(callable(TValue, TKey): bool) $value): static
Take items in the collection until the given condition is met.
Take items in the collection until the given condition is met.
Implements
|
#
|
public
|
takeUntilTimeout(DateTimeInterface $timeout): static
Take items in the collection until a given point in time.
Take items in the collection until a given point in time.
|
#
|
public
|
takeWhile(TValue|(callable(TValue, TKey): bool) $value): static
Take items in the collection while the given condition is met.
Take items in the collection while the given condition is met.
Implements
|
#
|
public
|
tapEach(callable(TValue, TKey): mixed $callback): static
Pass each item in the collection to the given callback, lazily.
Pass each item in the collection to the given callback, lazily.
|
#
|
public
|
throttle(float $seconds): static<TKey, TValue>
Throttle the values, releasing them at most once per the given seconds.
Throttle the values, releasing them at most once per the given seconds.
|
#
|
public
|
dot(): static
Flatten a multi-dimensional associative array with dots.
Flatten a multi-dimensional associative array with dots.
|
#
|
public
|
undot(): static
Convert a flatten "dot" notation array into an expanded array.
Convert a flatten "dot" notation array into an expanded array.
Implements
|
#
|
public
|
unique((callable(TValue, TKey): mixed)|string|null $key = null, bool $strict = false): static
Return only unique items from the collection array.
Return only unique items from the collection array.
Implements
|
#
|
public
|
values(): static<int, TValue>
Reset the keys on the underlying array.
Reset the keys on the underlying array.
Implements
|
#
|
public
|
zip<TZipValue>(
Arrayable<array-key, TZipValue>|iterable<array-key, TZipValue> ...$items,
): static<int, static<int, TValue|TZipValue>>
Zip the collection together with one or more arrays.
Zip the collection together with one or more arrays.
e.g. new LazyCollection([1, 2, 3])->zip([4, 5, 6]);
=> [[1, 4], [2, 5], [3, 6]]
Implements
|
#
|
public
|
pad<TPadValue>(int $size, TPadValue $value): static<int, TValue|TPadValue>
Pad collection to the specified length with a value.
Pad collection to the specified length with a value.
Implements
|
#
|
public
|
getIterator(): Traversable<TKey, TValue>
Get the values iterator.
|
#
|
public
|
count(): int
Count the number of items in the collection.
Count the number of items in the collection.
Implements
|
#
|
protected
|
makeIterator<TIteratorKey is array-key, TIteratorValue>(
IteratorAggregate<TIteratorKey, TIteratorValue>|array<TIteratorKey, TIteratorValue>|(callable(): Generator<TIteratorKey, TIteratorValue>) $source,
): Traversable<TIteratorKey, TIteratorValue>
Make an iterator from the given source.
Make an iterator from the given source.
|
#
|
protected
|
explodePluckParameters(string|string[] $value, string|string[]|null $key): array{string[], (string[]|null)}
Explode the "value" and "key" arguments passed to "pluck".
Explode the "value" and "key" arguments passed to "pluck".
|
#
|
protected
|
passthru(string $method, array<mixed> $params): static
Pass this lazy collection through a method on the collection class.
Pass this lazy collection through a method on the collection class.
|
#
|
protected
|
now(): int
Get the current time.
|
#
|
protected
|
preciseNow(): float
Get the precise current time.
Get the precise current time.
|
#
|
protected
|
usleep(int $microseconds): void
Sleep for the given amount of microseconds.
Sleep for the given amount of microseconds.
|
#
|