zeros function

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

Implementation

Iterable<int> zeros([int length = 10]) => ConstantIterable(0, length);