Function bigtools::utils::fill::fill_start_to_end

source ยท
pub fn fill_start_to_end<I>(
    iter: I,
    start: u32,
    end: u32
) -> impl Iterator<Item = Result<Value>> + Send
where I: Iterator<Item = Result<Value>> + Send,
Expand description

Fills any space between Values with 0.0s. This will also pad the start and end with 0.0s if they do not exist. Note: Output values will not be merged if any input Values are 0.0

If the start > the end of the first value, it will be ignored.