MCPcopy Create free account
hub / github.com/PerroEngine/Perro / fill

Method fill

perro_source/core/perro_structs/src/structs/matrix/mod.rs:682–688  ·  view source on GitHub ↗
(&mut self, value: T)

Source from the content-addressed store, hash-verified

680
681 #[inline]
682 pub fn fill(&mut self, value: T) -> &mut Self
683 where
684 T: Copy,
685 {
686 self.as_mut_slice().fill(value);
687 self
688 }
689
690 #[inline]
691 pub fn fill_with(&mut self, mut f: impl FnMut(usize, usize) -> T) -> &mut Self {

Callers 13

begin_frameMethod · 0.80
begin_frameMethod · 0.80
clearMethod · 0.80
begin_frameMethod · 0.80
set_sideMethod · 0.80
begin_frameMethod · 0.80
raster_impacts_2dFunction · 0.80
raster_impacts_3dFunction · 0.80
app.jsFile · 0.80

Calls 1

as_mut_sliceMethod · 0.80