recycle {itertools}R Documentation

Create a recycling iterator

Description

Create an iterator that recycles a specified iterable.

Usage

recycle(iterable, times=NA_integer_)

Arguments

iterable

The iterable to recycle.

times

integer. Number of times to recycle the values in the iterator. Default value of NA_integer_ means to recycle forever.

Examples

# Recycle over 'a', 'b', and 'c' three times
recycle(letters[1:3], 3)

[Package itertools version 0.1-3 Index]