瀏覽代碼

Add #[inline] to is_one.

Clar Charr 7 年之前
父節點
當前提交
51dad501aa
共有 1 個文件被更改,包括 1 次插入0 次删除
  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()
     }