Iterator$Typings<T> extension
- on
-
- Iterator<
T>
- Iterator<
Properties
- all ↔ bool Function(bool (T))
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - any ↔ bool Function(bool (T))
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - count → num
-
Available on Iterator<
This read-only property is the total number of items in the iterated collection.T> , provided by the Iterator$Typings extensionno setter - each ↔ void Function(void (T))
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair -
filter
↔ Iterator<
T> Function(bool (T)) -
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - first ↔ T? Function()
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - hasNext ↔ bool Function()
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair -
iterator
↔ Iterator<
T> -
Available on Iterator<
Returns itself, which is convenient for code that expects an Iterable instead of an Iterator. @return {Iterator.T> , provided by the Iterator$Typings extensiongetter/setter pair - key → dynamic
-
Available on Iterator<
Gets the current index to the item in the collection, assuming #next has just returned true.T> , provided by the Iterator$Typings extensionno setter -
map
↔ Iterator<
S> Function<S>(S (T)) -
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - next ↔ bool Function()
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - reset ↔ void Function()
-
Available on Iterator<
T> , provided by the Iterator$Typings extensiongetter/setter pair - value → T
-
Available on Iterator<
Gets the current item in the collection, assuming #next has just returned true.T> , provided by the Iterator$Typings extensionno setter