ones function

Iterable<int> ones([
  1. int length = 10
])

Implementation

Iterable<int> ones([int length = 10]) => ConstantIterable(1, length);