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

Method sub_f32

perro_source/core/perro_structs/src/structs/matrix/mod.rs:1258–1262  ·  view source on GitHub ↗
(self, rhs: Self)

Source from the content-addressed store, hash-verified

1256
1257 #[inline]
1258 pub fn sub_f32(self, rhs: Self) -> Self {
1259 let mut out = self;
1260 out.sub_assign_f32(rhs);
1261 out
1262 }
1263
1264 #[inline]
1265 pub fn sub_assign_f32(&mut self, rhs: Self) -> &mut Self {

Callers 2

bench_matrix4_bulk_opsFunction · 0.80
sub_fastMethod · 0.80

Calls 1

sub_assign_f32Method · 0.80

Tested by

no test coverage detected