DelegatingIterable<E> constructor

const DelegatingIterable<E>(Iterable<E> base)

Creates a wrapper that forwards operations to base.

Implementation

const DelegatingIterable(Iterable<E> base) : _base = base;