Removed deprecation attributes that can no longer be used outside of std
This commit is contained in:
parent
eeeaaf2407
commit
f0af39dfae
|
@ -691,7 +691,6 @@ impl Integer for BigUint {
|
||||||
fn lcm(&self, other: &BigUint) -> BigUint { ((self * other) / self.gcd(other)) }
|
fn lcm(&self, other: &BigUint) -> BigUint { ((self * other) / self.gcd(other)) }
|
||||||
|
|
||||||
/// Deprecated, use `is_multiple_of` instead.
|
/// Deprecated, use `is_multiple_of` instead.
|
||||||
#[deprecated = "function renamed to `is_multiple_of`"]
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn divides(&self, other: &BigUint) -> bool { self.is_multiple_of(other) }
|
fn divides(&self, other: &BigUint) -> bool { self.is_multiple_of(other) }
|
||||||
|
|
||||||
|
@ -1488,7 +1487,6 @@ impl Integer for BigInt {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Deprecated, use `is_multiple_of` instead.
|
/// Deprecated, use `is_multiple_of` instead.
|
||||||
#[deprecated = "function renamed to `is_multiple_of`"]
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn divides(&self, other: &BigInt) -> bool { return self.is_multiple_of(other); }
|
fn divides(&self, other: &BigInt) -> bool { return self.is_multiple_of(other); }
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,6 @@ pub trait Integer
|
||||||
fn lcm(&self, other: &Self) -> Self;
|
fn lcm(&self, other: &Self) -> Self;
|
||||||
|
|
||||||
/// Deprecated, use `is_multiple_of` instead.
|
/// Deprecated, use `is_multiple_of` instead.
|
||||||
#[deprecated = "function renamed to `is_multiple_of`"]
|
|
||||||
fn divides(&self, other: &Self) -> bool;
|
fn divides(&self, other: &Self) -> bool;
|
||||||
|
|
||||||
/// Returns `true` if `other` is a multiple of `self`.
|
/// Returns `true` if `other` is a multiple of `self`.
|
||||||
|
@ -238,7 +237,6 @@ macro_rules! impl_integer_for_isize {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Deprecated, use `is_multiple_of` instead.
|
/// Deprecated, use `is_multiple_of` instead.
|
||||||
#[deprecated = "function renamed to `is_multiple_of`"]
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn divides(&self, other: &$T) -> bool { return self.is_multiple_of(other); }
|
fn divides(&self, other: &$T) -> bool { return self.is_multiple_of(other); }
|
||||||
|
|
||||||
|
@ -416,7 +414,6 @@ macro_rules! impl_integer_for_usize {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Deprecated, use `is_multiple_of` instead.
|
/// Deprecated, use `is_multiple_of` instead.
|
||||||
#[deprecated = "function renamed to `is_multiple_of`"]
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn divides(&self, other: &$T) -> bool { return self.is_multiple_of(other); }
|
fn divides(&self, other: &$T) -> bool { return self.is_multiple_of(other); }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue