Home
last modified time | relevance | path

Searched refs:abs_sub (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/num-traits/src/
Dsign.rs20 fn abs_sub(&self, other: &Self) -> Self; in abs_sub() method
53 fn abs_sub(&self, other: &$t) -> $t {
90 fn abs_sub(&self, other: &Self) -> Self { in abs_sub() function
91 Wrapping(self.0.abs_sub(&other.0)) in abs_sub()
123 fn abs_sub(&self, other: &$t) -> $t {
174 pub fn abs_sub<T: Signed>(x: T, y: T) -> T { in abs_sub() function
175 x.abs_sub(&y) in abs_sub()
Dreal.rs469 fn abs_sub(self, other: Self) -> Self; in abs_sub() method
814 Float::abs_sub(self, other: Self) -> Self;
Dfloat.rs1549 fn abs_sub(self, other: Self) -> Self; in abs_sub() method
1914 fn abs_sub(self, other: Self) -> Self {
1915 <$T>::abs_sub(self, other)
2071 fn abs_sub(self, other: Self) -> Self { in abs_sub() method
2119 fn abs_sub(self, other: Self) -> Self { in abs_sub() method
Dlib.rs51 pub use sign::{abs, abs_sub, signum, Signed, Unsigned};