Description Usage Arguments Value Examples
Iterate over a list of iterators or atomic vectors. Zip style.
1 |
... |
iterators or atomic vectors. |
an iterator.
1 2 3 4 5 6 7 8 9 | itr1 <- iterator_atomic(1:6)
itr <- iterator_zip(itr1, 7:12)
collect(itr, 10)
#A warnning will be thrown if size of iterators are different.
itr1 <- iterator_atomic(1:6)
itr2 <- iterator_atomic(1:4)
itr <- iterator_zip(itr1, itr2)
collect(itr, 15)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.