pub fn full_like<T: Element, D: Dimension>( other: &Array<T, D>, fill_value: T, ) -> FerrayResult<Array<T, D>>
Create an array with the same shape as other, filled with fill_value.
other
fill_value
Analogous to numpy.full_like().
numpy.full_like()