1 interface inheriting from ISignedNumber
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Numerics\IFloatingPoint.cs (1)
11ISignedNumber<TSelf>
8 implementations of ISignedNumber
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
20ISignedNumber<Int128>,
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
26ISignedNumber<short>,
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
26ISignedNumber<int>,
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
26ISignedNumber<long>,
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
35ISignedNumber<nint>,
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
26ISignedNumber<sbyte>,
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
23ISignedNumber<BigInteger>
System\Numerics\Complex.cs (1)
22ISignedNumber<Complex>,
28 references to ISignedNumber
System.Linq (1)
System\Linq\Sum.cs (1)
81where T : struct, IBinaryInteger<T>, ISignedNumber<T>, IMinMaxValue<T>
System.Private.CoreLib (22)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (2)
1816/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1817static decimal ISignedNumber<decimal>.NegativeOne => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
1784/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1785static double ISignedNumber<double>.NegativeOne => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2205/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2035/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (2)
1327/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1328static short ISignedNumber<short>.NegativeOne => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (2)
1393/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1394static int ISignedNumber<int>.NegativeOne => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (2)
1396/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1397static long ISignedNumber<long>.NegativeOne => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (2)
1378/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1379static nint ISignedNumber<nint>.NegativeOne => -1;
src\libraries\System.Private.CoreLib\src\System\Numerics\ISignedNumber.cs (1)
10where TSelf : ISignedNumber<TSelf>?
src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (1)
71where TInteger : struct, IBinaryInteger<TInteger>, ISignedNumber<TInteger>
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (2)
1823/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1824static NFloat ISignedNumber<NFloat>.NegativeOne => new NFloat(NativeType.NegativeOne);
src\libraries\System.Private.CoreLib\src\System\SByte.cs (2)
1290/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1291static sbyte ISignedNumber<sbyte>.NegativeOne => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
1700/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 1701static float ISignedNumber<float>.NegativeOne => NegativeOne;
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
398[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Numerics.ISignedNumber<>))]
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (2)
5389/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 5390static BigInteger ISignedNumber<BigInteger>.NegativeOne => MinusOne;
System\Numerics\Complex.cs (2)
2192/// <inheritdoc cref="ISignedNumber{TSelf}.NegativeOne" /> 2193static Complex ISignedNumber<Complex>.NegativeOne => new Complex(-1.0, 0.0);