Interface representing an iterable collection.

interface IterableCollection<T> {
    [iterator](): Iterator<T, any, any>;
}

Type Parameters

  • T

Hierarchy

  • Iterable<T>
    • IterableCollection

Implemented by

Methods

Methods