powered by
Returns an iterator that counts starting from one.
icount(count) icountn(vn)
number of times that the iterator will fire. If not specified, it will count forever.
vector of counts.
The counting iterator.
# NOT RUN { # create an iterator that counts from 1 to 3. it <- icount(3) nextElem(it) nextElem(it) nextElem(it) try(nextElem(it)) # expect a StopIteration exception # }
Run the code above in your browser using DataLab