CartesianRange<T1, T2> constructor

CartesianRange<T1, T2>(
  1. Iterable<T1> _first,
  2. Iterable<T2> _second
)

Creates a CartesianRange combining the elements of the first and second iterable.

Implementation

CartesianRange(this._first, this._second);