repeat method

Iterable<T> repeat(
  1. int count
)

Implementation

Iterable<T> repeat(int count) => ConstantIterable(this, count);