ilimit: Create a limited iterator

Description Usage Arguments Examples

Description

Create an iterator that wraps a specified iterable a limited number of times.

Usage

1
ilimit(iterable, n)

Arguments

iterable

Iterable to iterate over.

n

Maximum number of values to return.

Examples

1
2
# Limit icount to only return three values
as.list(ilimit(icount(), 3))

itertools documentation built on May 2, 2019, 2:26 p.m.