count function

Iterable<num> count ([num start = 0, num step = 1 ])

Returns an infinite Iterable of nums, starting from start and increasing by step.

Implementation

Iterable<num> count([num start = 0, num step = 1]) => new _Count(start, step);