6 references to One
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (6)
1045public static UInt128 operator --(UInt128 value) => value - One; 1048public static UInt128 operator checked --(UInt128 value) => checked(value - One); 1087return (right == left) ? One : Zero; 1310public static UInt128 operator ++(UInt128 value) => value + One; 1313public static UInt128 operator checked ++(UInt128 value) => checked(value + One); 1341static UInt128 IMultiplicativeIdentity<UInt128, UInt128>.MultiplicativeIdentity => One;