tabulate<A> static method

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

Implementation

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