This is true if all invocations of the given predicate on items in the collection are true.
Call the given predicate on each item in the collection. As soon as a call returns false, this returns false. Otherwise this returns true. For an empty collection this returns true.
This automatically reset's itself when it is called.
This function must not have any side-effects.
True if all predicate calls are true; false otherwise.
This is true if any invocation of the given predicate on items in the collection is true.
Call the given predicate on each item in the collection. As soon as a call returns true, this returns true. Otherwise this returns false. For an empty collection this returns false.
This automatically reset's itself when it is called.
This function must not have any side-effects.
True if any predicate call is true; false otherwise.
Call the given function on each item in the collection.
This automatically reset's itself when it is called.
This function must not modify the collection.
this iterator itself
Advance if needed to the first item in the collection and return it, or return null if there is none. Returns a key/value pair, not a value.
Readonly
countThis read-only property is the total number of items in the iterated collection.
Readonly
keyReadonly
value
This interface defines properties and methods for iterating over a Map; it provides the next predicate and the key and value read-only properties.
Iterating over Maps is very similar to an Iterator<IKeyValuePair>, but not exactly, because the type of the value property is T, not an IKeyValuePair.
Typical usage is:
see
Iterator