class CachingIterator extends CachingIterator implements Countable

Smarter caching iterator.

Properties

bool read-only $first
bool read-only $last
bool read-only $empty
bool read-only $odd
bool read-only $even
int read-only $counter
mixed read-only $nextKey
mixed read-only $nextValue

Methods

__construct($iterator)

No description

bool
isFirst($width = null)

Is the current element the first one?

bool
isLast($width = null)

Is the current element the last one?

bool
isEmpty()

Is the iterator empty?

bool
isOdd()

Is the counter odd?

bool
isEven()

Is the counter even?

int
getCounter()

Returns the counter.

int
count()

Returns the count of elements.

void
next()

Forwards to the next element.

void
rewind()

Rewinds the Iterator.

mixed
getNextKey()

Returns the next key.

mixed
getNextValue()

Returns the next element.

Details

at line 33
__construct($iterator)

No description

Parameters

$iterator

at line 60
bool isFirst($width = null)

Is the current element the first one?

Parameters

$width

Return Value

bool

at line 71
bool isLast($width = null)

Is the current element the last one?

Parameters

$width

Return Value

bool

at line 81
bool isEmpty()

Is the iterator empty?

Return Value

bool

at line 91
bool isOdd()

Is the counter odd?

Return Value

bool

at line 101
bool isEven()

Is the counter even?

Return Value

bool

at line 111
int getCounter()

Returns the counter.

Return Value

int

at line 121
int count()

Returns the count of elements.

Return Value

int

at line 137
void next()

Forwards to the next element.

Return Value

void

at line 150
void rewind()

Rewinds the Iterator.

Return Value

void

at line 161
mixed getNextKey()

Returns the next key.

Return Value

mixed

at line 171
mixed getNextValue()

Returns the next element.

Return Value

mixed

Traits

Strict class for better experience.