Explorar o código

Add #[inline] to is_one.

Clar Charr %!s(int64=7) %!d(string=hai) anos
pai
achega
51dad501aa
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/identities.rs

+ 1 - 0
src/identities.rs

@@ -85,6 +85,7 @@ pub trait One: Sized + Mul<Self, Output = Self> {
     /// For performance reasons, it's best to implement this manually.
     /// After a semver bump, this method will be required, and the
     /// `where Self: PartialEq` bound will be removed.
+    #[inline]
     fn is_one(&self) -> bool where Self: PartialEq {
         *self == Self::one()
     }