Searched refs:abs_sub (Results 1 – 4 of 4) sorted by relevance
/third_party/rust/crates/num-traits/src/ |
D | sign.rs | 20 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()
|
D | real.rs | 469 fn abs_sub(self, other: Self) -> Self; in abs_sub() method 814 Float::abs_sub(self, other: Self) -> Self;
|
D | float.rs | 1549 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
|
D | lib.rs | 51 pub use sign::{abs, abs_sub, signum, Signed, Unsigned};
|