reduce_min

Function reduce_min 

Source
pub fn reduce_min<'a, E, S>(
    blocks: S,
    dtype: NumberType,
    block_size: usize,
    stride: u64,
) -> Box<dyn Stream<Item = Result<Array, E>> + Send + Unpin + 'a>
where E: Send + 'a, S: Stream<Item = Result<Array, E>> + Send + Unpin + 'a,
Expand description

Compute the minimum of each stride of a Stream of Arrays.