Function iota

pub fn iota(size: usize) -> Vec<usize>
Expand description

Generates a vector of indices from 0 to size - 1.

§Arguments

  • size - The size of the dataset.

§Returns

A vector containing indices from 0 to size - 1.