| iter_wrapper {iterpc} | R Documentation | 
Wrap iterpc objects by iterators::iter
Description
Wrap iterpc objects by iterators::iter
Usage
iter_wrapper(I, d = 1)
Arguments
| I | the iterpc object | 
| d | number of permutation(s)/combination(s) wanted in each iteration, default to 1 | 
Value
a iter object compatible with iterators package
Examples
library(iterators)
I <- iterpc(5, 2)
it <- iter_wrapper(I)
nextElem(it)
nextElem(it)
library(foreach)
I <- iterpc(5, 2)
it <- iter_wrapper(I)
foreach(x=it, .combine=c) %do% { sum(x) }
[Package iterpc version 0.4.2 Index]