Methods |
public
|
__construct(mixed ...$values)
Creates a new instance, using either a traversable object or an array for the initial values.
Creates a new instance, using either a traversable object or an array for the initial values.
Parameters
...$values |
A traversable object or an array to use for the initial values.
|
|
#
|
public
|
count(): int
Count elements of an object
Count elements of an object
Returns
The custom count as an integer.
The return value is cast to an integer.
Implements
|
#
|
public
|
clear(): void
Removes all values from the deque.
Removes all values from the deque.
Implements
|
#
|
public
|
copy(): Collection
Returns a shallow copy of the deque.
Returns a shallow copy of the deque.
Implements
|
#
|
public
|
getIterator(): Traversable
|
#
|
public
|
isEmpty(): bool
Returns whether the deque is empty.
Returns whether the deque is empty.
Implements
|
#
|
public
|
toArray(): array
Converts the deque to an array.
<p><b>Note:</b> Casting to an array is not supported yet.</p>
Converts the deque to an array.
Note: Casting to an array is not supported yet.
Returns
An array containing all the values in the same order as
the deque.
Implements
|
#
|
public
|
allocate(int $capacity): void
Ensures that enough memory is allocated for a required capacity.
This removes the need to reallocate the internal as…
Ensures that enough memory is allocated for a required capacity.
This removes the need to reallocate the internal as values are added.
Parameters
$capacity |
The number of values for which capacity should
be allocated. Note: Capacity will stay the same if this value is
less than or equal to the current capacity.
Note: Capacity will always be rounded up to the nearest power of 2.
|
Implements
|
#
|
public
|
apply(callable $callback): void
Updates all values by applying a callback function to each value in
the deque.
Updates all values by applying a callback function to each value in
the deque.
Parameters
$callback |
A callable to apply to each value in the
deque. The callback should return what the value should be
replaced by.
callback ( mixed $value ) : mixed
|
Implements
|
#
|
public
|
capacity(): int
Returns the current capacity.
Returns the current capacity.
Returns
Implements
|
#
|
public
|
contains(mixed ...$values): bool
Determines if the deque contains all values.
Determines if the deque contains all values.
Parameters
...$values |
Values to check.
|
Returns
FALSE if any of the provided values are not in the
deque, TRUE otherwise.
Implements
|
#
|
public
|
filter(null|callable $callback = null): Deque
Creates a new deque using a callable to determine which values
to include.
Creates a new deque using a callable to determine which values
to include.
Parameters
$callback |
Optional callable which returns TRUE if the
value should be included, FALSE otherwise. If a callback is not
provided, only values which are TRUE (see converting to boolean) will
be included.
callback ( mixed $value ) : bool
|
Returns
A new deque containing all the values for which
either the callback returned TRUE, or all values that convert to
TRUE if a callback was not provided.
Implements
|
#
|
public
|
find(mixed $value): int|false
Returns the index of the value, or FALSE if not found.
Returns the index of the value, or FALSE if not found.
Parameters
$value |
The value to find.
|
Returns
The index of the value, or FALSE if not found.
Implements
|
#
|
public
|
first(): mixed
Returns the first value in the deque.
Returns the first value in the deque.
Returns
The first value in the deque.
Throws
Implements
|
#
|
public
|
get(int $index): mixed
Returns the value at a given index.
Returns the value at a given index.
Parameters
$index |
The index to access, starting at 0.
|
Returns
The value at the requested index.
Throws
Implements
|
#
|
public
|
insert(int $index, mixed ...$values): void
Inserts values into the deque at a given index.
Inserts values into the deque at a given index.
Parameters
$index |
The index at which to insert. 0 <= index <= count
Note: You can insert at the index equal to the number of values.
|
...$values |
The value or values to insert.
|
Throws
Implements
|
#
|
public
|
join(string $glue = ''): string
Joins all values together as a string using an optional separator
between each value.
Joins all values together as a string using an optional separator
between each value.
Parameters
$glue |
An optional string to separate each value.
|
Returns
All values of the deque joined together as a
string.
Implements
|
#
|
public
|
last(): mixed
Returns the last value in the deque.
Returns the last value in the deque.
Returns
The last value in the deque.
Throws
Implements
|
#
|
public
|
map(callable $callback): Deque
Returns the result of applying a callback function to each value in
the deque.
Returns the result of applying a callback function to each value in
the deque.
Parameters
$callback |
A callable to apply to each value in the
deque.
The callable should return what the new value will be in the new
deque.
callback ( mixed $value ) : mixed
|
Returns
The result of applying a callback to each value in
the deque.
Note: The values of the current instance won't be
affected.
Implements
|
#
|
public
|
merge(iterable $values): Deque
Returns the result of adding all given values to the deque.
Returns the result of adding all given values to the deque.
Parameters
$values |
A traversable object or an array.
|
Returns
The result of adding all given values to the
deque, effectively the same as adding the values to a copy,
then returning that copy.
Implements
|
#
|
public
|
pop(): mixed
Removes and returns the last value.
Removes and returns the last value.
Returns
Throws
Implements
|
#
|
public
|
push(mixed ...$values): void
Adds values to the end of the deque.
Adds values to the end of the deque.
Parameters
...$values |
The values to add.
|
Implements
|
#
|
public
|
reduce(callable $callback, mixed $initial = null): mixed
Reduces the deque to a single value using a callback function.
Reduces the deque to a single value using a callback function.
Parameters
$callback |
callback ( mixed $carry , mixed $value ) : mixed
$carry The return value of the previous callback, or initial if it's
the first iteration.
$value The value of the current iteration.
|
$initial |
The initial value of the carry value. Can be NULL.
|
Returns
The return value of the final callback.
Implements
|
#
|
public
|
remove(int $index): mixed
Removes and returns a value by index.
Removes and returns a value by index.
Parameters
$index |
The index of the value to remove.
|
Returns
The value that was removed.
Implements
|
#
|
public
|
reverse(): void
Reverses the deque in-place.
Reverses the deque in-place.
Implements
|
#
|
public
|
reversed(): Deque
Returns a reversed copy of the deque.
Returns a reversed copy of the deque.
Returns
A reversed copy of the deque.
Note: The current instance is not affected.
Implements
|
#
|
public
|
rotate(int $rotations): void
Rotates the deque by a given number of rotations, which is
equivalent to successively calling
$deque->push($deque-…
Rotates the deque by a given number of rotations, which is
equivalent to successively calling
$deque->push($deque->shift()) if the number of rotations is
positive, or $deque->unshift($deque->pop()) if negative.
Parameters
$rotations |
The number of times the deque should be
rotated.
|
Implements
|
#
|
public
|
set(int $index, mixed $value): void
Updates a value at a given index.
Updates a value at a given index.
Parameters
$index |
The index of the value to update.
|
$value |
The new value.
|
Throws
Implements
|
#
|
public
|
shift(): mixed
Removes and returns the first value.
Removes and returns the first value.
Throws
Implements
|
#
|
public
|
slice(int $index, int|null $length = null): Deque
Creates a sub-deque of a given range.
Creates a sub-deque of a given range.
Parameters
$index |
The index at which the sub-deque starts.
If positive, the deque will start at that index in the deque.
If negative, the deque will start that far from the end.
|
$length |
If a length is given and is positive, the
resulting deque will have up to that many values in it. If the
length results in an overflow, only values up to the end of the
deque will be included. If a length is given and is negative,
the deque will stop that many values from the end. If a length
is not provided, the resulting deque will contain all values
between the index and the end of the deque.
|
Returns
A sub-deque of the given range.
Implements
|
#
|
public
|
sort(callable|null $comparator = null): void
Sorts the deque in-place, using an optional comparator function.
Sorts the deque in-place, using an optional comparator function.
Parameters
$comparator |
The comparison function must return
an integer less than, equal to, or greater than zero if the first
argument is considered to be respectively less than, equal to, or
greater than the second. Note that before PHP 7.0.0 this integer had
to be in the range from -2147483648 to 2147483647.
callback ( mixed $a, mixed $b ) : int
Caution: Returning non-integer values from the comparison
function, such as float, will result in an internal cast to integer
of the callback's return value. So values such as 0.99 and 0.1 will
both be cast to an integer value of 0, which will compare such
values as equal.
|
Implements
|
#
|
public
|
sorted(callable|null $comparator = null): Deque
Returns a sorted copy, using an optional comparator function.
Returns a sorted copy, using an optional comparator function.
Parameters
$comparator |
The comparison function must return
an integer less than, equal to, or greater than zero if the first
argument is considered to be respectively less than, equal to, or
greater than the second. Note that before PHP 7.0.0 this integer had
to be in the range from -2147483648 to 2147483647.
callback ( mixed $a, mixed $b ) : int
Caution: Returning non-integer values from the comparison
function, such as float, will result in an internal cast to integer
of the callback's return value. So values such as 0.99 and 0.1 will
both be cast to an integer value of 0, which will compare such
values as equal.
|
Returns
Returns a sorted copy of the deque.
Implements
|
#
|
public
|
sum(): float|int
Returns the sum of all values in the deque.
<p><b>Note:</b> Arrays and objects are considered equal to zero when…
Returns the sum of all values in the deque.
Note: Arrays and objects are considered equal to zero when
calculating the sum.
Returns
The sum of all the values in the deque as
either a float or int depending on the values in the deque.
Implements
|
#
|
public
|
unshift(mixed $values): void
Adds values to the front of the deque, moving all the current
values forward to make room for the new values.
Adds values to the front of the deque, moving all the current
values forward to make room for the new values.
Parameters
$values |
The values to add to the front of the deque.
Note: Multiple values will be added in the same order that they
are passed.
|
Implements
|
#
|
public
|
jsonSerialize(): mixed
Specify data which should be serialized to JSON
Specify data which should be serialized to JSON
Returns
data which can be serialized by json_encode,
which is a value of any type other than a resource.
Implements
|
#
|