Methods |
public
|
__construct(iterable $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.
|
#
|
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.
|
Implements
|
#
|
public
|
apply(callable $callback): void
Updates all values by applying a callback function to each value in
the vector.
Updates all values by applying a callback function to each value in
the vector.
Parameters
$callback |
A callable to apply to each value in the
sequence. 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
|
clear(): void
Removes all values from the vector.
Removes all values from the vector.
Implements
|
#
|
public
|
contains(mixed ...$values): bool
Determines if the vector contains all values.
Determines if the vector contains all values.
Parameters
...$values |
Values to check.
|
Returns
FALSE if any of the provided values are not in the
vector, TRUE otherwise.
Implements
|
#
|
public
|
copy(): Vector
Returns a shallow copy of the vector.
Returns a shallow copy of the vector.
Returns
Returns a shallow copy of the vector.
Implements
|
#
|
public
|
filter(null|callable $callback = null): Vector
Creates a new vector using a callable to determine which values to
include.
Creates a new vector 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 vector 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): mixed|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.
Note: Values will be compared by value and by type.
Implements
|
#
|
public
|
first(): mixed
Returns the first value in the vector.
Returns the first value in the vector.
Returns
The first value in the sequence.
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.
Implements
|
#
|
public
|
getIterator(): Traversable
|
#
|
public
|
insert(int $index, array ...$values): void
Inserts values into the sequence at a given index.
Inserts values into the sequence 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.
|
Implements
|
#
|
public
|
join(string|null $glue = null): 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 sequence joined together as a string.
Implements
|
#
|
public
|
last(): mixed
Returns the last value in the sequence.
Returns the last value in the sequence.
Returns
The last value in the sequence.
Implements
|
#
|
public
|
map(callable $callback): Vector
Returns the result of applying a callback function to each value in the sequence.
Returns the result of applying a callback function to each value in the sequence.
Parameters
$callback |
A callable to apply to each value in the sequence.
The callable should return what the new value will be in the new sequence.
|
Returns
The result of applying a callback to each value in
the sequence. Note: The values of the current instance won't be
affected.
Implements
|
#
|
public
|
merge(Traversable|array $values): Vector
Returns the result of adding all given values to the sequence.
Returns the result of adding all given values to the sequence.
Parameters
$values |
A traversable object or an array.
|
Returns
The result of adding all given values to the sequence, effectively the same as adding the
values to a copy, then returning that copy.
Note:
The current instance won't be affected.
Implements
|
#
|
public
|
pop(): mixed
Removes and returns the last value.
Removes and returns the last value.
Returns
Implements
|
#
|
public
|
push(array ...$values): void
Adds values to the end of the sequence.
Adds values to the end of the sequence.
Parameters
...$values |
The values to add.
|
Implements
|
#
|
public
|
reduce(callable $callback, mixed $initial = null): mixed|void
Reduces the sequence to a single value using a callback function.
Reduces the sequence 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 sequence in-place.
Reverses the sequence in-place.
Implements
|
#
|
public
|
reversed(): Vector
Returns a reversed copy of the sequence.
Returns a reversed copy of the sequence.
Returns
A reversed copy of the sequence.
Note: The current instance is not affected.
Implements
|
#
|
public
|
rotate(int $rotations): void
Rotates the sequence by a given number of rotations, which is
equivalent to successively calling $sequence->push(…
Rotates the sequence by a given number of rotations, which is
equivalent to successively calling $sequence->push($sequence->shift())
if the number of rotations is positive, or $sequence->unshift($sequence->pop())
if negative.
Parameters
$rotations |
The number of times the sequence 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.
Returns
The first value, which was removed.
Throws
Implements
|
#
|
public
|
slice(int $index, int|null $length = null): Vector
Creates a sub-sequence of a given range.
Creates a sub-sequence of a given range.
Parameters
$index |
The index at which the sub-sequence starts. If
positive, the sequence will start at that
index in the sequence. If negative, the sequence will start that
far from the end.
|
$length |
If a length is given and is positive, the
resulting sequence will have up to that many values in it. If the
length results in an overflow, only values up to the end of the
sequence will be included. If a length is given and is negative,
the sequence will stop that many values from the end. If a length
is not provided, the resulting sequence will contain all values
between the index and the end of the sequence.
|
Returns
A sub-sequence of the given range.
Implements
|
#
|
public
|
sort(callable|null $comparator = null): void
Sorts the sequence in-place, using an optional comparator function.
Sorts the sequence 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): Vector
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 sequence.
Implements
|
#
|
public
|
sum(): float
Returns the sum of all values in the sequence.<br>
<b>Note:</b> Arrays and objects are considered equal to zero when…
Returns the sum of all values in the sequence.
Note: Arrays and objects are considered equal to zero when
calculating the sum.
Returns
The sum of all the values in the sequence as
either a float or int depending on the values in the sequence.
Implements
|
#
|
public
|
unshift(mixed $values): void
Adds values to the front of the sequence, moving all the current
values forward to make room for the new values.
Adds values to the front of the sequence, moving all the current
values forward to make room for the new values.
Parameters
$values |
The values to add to the front of the sequence.
Note: Multiple values will be added in the same order that they are
passed.
|
Implements
|
#
|
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
|
isEmpty(): bool
Returns whether the collection is empty.
Returns whether the collection is empty.
Implements
|
#
|
public
|
toArray(): array
Converts the collection to an array.
<p><b>Note:</b> Casting to an array is not supported yet.</p>
Converts the collection 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 collection.
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
|
#
|