Returns an infinite Iterable of nums, starting from start and increasing by step.
start
step
Iterable<num> count([num start = 0, num step = 1]) => new _Count(start, step);