interface FastIterable<T>
An interface that extends the standard Iterable interface to return a FastIterator instead of a normal Iterator.
Implemented by: BiMultiMapBase<K,V,Tp>, VariantMultiMapBase<K,V,Tp>, VariantMapBase<K,V,Tp>, VariantSetBase<T,Tp>, NonEmptyBase<E>, Stream<T>, List<T>, VariantMultiSetBase<T,Tp>, BiMap<K,V>, VariantGraphBase<N,V,Tp>, VariantTableBase<R,C,V,Tp>
Type parameters
| Name | Description |
|---|---|
| T | the element type |
Methods
[Symbol.iterator]
Returns a FastIterator instance used to iterate over the values of this Iterable.
[Symbol.iterator]FastIterator instance used to iterate over the values of this Iterable.Definition
[Symbol.iterator](): FastIterator<T>;