Function polars::prelude::get_sequential_row_statistics
source ยท pub fn get_sequential_row_statistics<I>(
iter: I,
total_rows_to_read: usize
) -> Vec<(usize, usize)>
Available on crate feature
polars-io
only.Expand description
Compute remaining_rows_to_read
to be taken per file up front, so we can actually read
concurrently/parallel
This takes an iterator over the number of rows per file.