Skip to contents

Create an iterator that returns a value a specified number of times.

Usage

i_repeat(x, times)

Arguments

x

The value to return repeatedly.

times

The number of times to repeat the value. Default value is infinity.

Value

an iteror.

Details

Originally from the itertools package.

Examples


# Repeat a value 10 times
unlist(as.list(i_repeat(42, 10)))
#>  [1] 42 42 42 42 42 42 42 42 42 42