tabulate<A> static method

RIterator<A> tabulate<A>(
  1. int len,
  2. Function1<int, A> f
)

Returns an iterator of length len where element i is f(i).

Implementation

static RIterator<A> tabulate<A>(int len, Function1<int, A> f) => _TabulateIterator(len, f);