concat6 method

Iterable<T> concat6(
  1. Iterable<T> c1,
  2. Iterable<T> c2,
  3. Iterable<T> c3,
  4. Iterable<T> c4,
  5. Iterable<T> c5,
  6. Iterable<T> c6,
)

Concatenates this iterable and six another iterables.

Appends the values of six given Iterables to the end of this iterable, resulting in an iterable that is the concatenation of all of them.

Example:

void main() {
  final list = [0, 1];
  final result = list.concat6(
    [2, 3],
    [4, 5],
    [6, 7],
    [8, 9],
    [10, 11],
    [12, 13],
  );

  // Result: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
}

Implementation

Iterable<T> concat6(
  Iterable<T> c1,
  Iterable<T> c2,
  Iterable<T> c3,
  Iterable<T> c4,
  Iterable<T> c5,
  Iterable<T> c6,
) {
  return followedBy(c1)
      .followedBy(c2)
      .followedBy(c3)
      .followedBy(c4)
      .followedBy(c5)
      .followedBy(c6);
}