rdiv_scalar

Function rdiv_scalar 

Source
pub fn rdiv_scalar<T>(src: &[T], scalar: T, dst: &mut [T])
where T: Copy + Div<T, Output = T>,
Expand description

Divides a scalar value by each element in src, storing the results in dst. All slices must have the same length.

ยงPanics

This method panics if the slices have different lengths.