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