MediaWiki REL1_37
|
Convenience class for iterating over an array in reverse order. More...
Public Member Functions | |
__construct ( $array=[]) | |
Creates an iterator which will visit the keys in $array in reverse order. | |
count () | |
current () | |
key () | |
next () | |
rewind () | |
valid () | |
Protected Attributes | |
array | $array |
Convenience class for iterating over an array in reverse order.
Definition at line 29 of file ReverseArrayIterator.php.
ReverseArrayIterator::__construct | ( | $array = [] | ) |
Creates an iterator which will visit the keys in $array in reverse order.
If given an object, will visit the properties of the object in reverse order. (Note that the default order for PHP arrays and objects is declaration/assignment order.)
@phpcs:ignore MediaWiki.Commenting.FunctionComment.ObjectTypeHintParam
array | object | $array |
Definition at line 42 of file ReverseArrayIterator.php.
ReverseArrayIterator::count | ( | ) |
Definition at line 76 of file ReverseArrayIterator.php.
ReverseArrayIterator::current | ( | ) |
Definition at line 55 of file ReverseArrayIterator.php.
References current().
Referenced by current().
ReverseArrayIterator::key | ( | ) |
ReverseArrayIterator::next | ( | ) |
Definition at line 64 of file ReverseArrayIterator.php.
ReverseArrayIterator::rewind | ( | ) |
Definition at line 68 of file ReverseArrayIterator.php.
Referenced by __construct().
ReverseArrayIterator::valid | ( | ) |
Definition at line 72 of file ReverseArrayIterator.php.
|
protected |
Definition at line 31 of file ReverseArrayIterator.php.
Referenced by __construct().