Methods |
public
static
|
recursively(array $data, Closure $callback): array
This helper does process each element of the provided array recursively.
It does so allowing for modifications to the provided array and without
using actual recursive calls.
This helper does process each element of the provided array recursively.
It does so allowing for modifications to the provided array and without
using actual recursive calls.
|
#
|
public
static
|
hashes(array $array): array<string|int, string>
This helper is intended to hash the provided array's values
and return it back as key => hash.
This helper is intended to hash the provided array's values
and return it back as key => hash.
|
#
|
public
static
|
set(array &$array, array $path, mixed $value): array
This helper is intended to set a value inside the provided array.
This helper is intended to set a value inside the provided array.
|
#
|
public
static
|
shift(mixed &...$args): void
This helper method is intended to shift the provided arguments to the left. Example: foo, bar, baz becomes bar, baz, baz
This helper method is intended to shift the provided arguments to the left. Example: foo, bar, baz becomes bar, baz, baz
|
#
|