iterpc (version 0.3.3)

iter_wrapper: 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

Run this code
# NOT RUN {
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) }
# }

Run the code above in your browser using DataCamp Workspace