18 implementations of AllBitsSet
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
409static byte IBinaryNumber<byte>.AllBitsSet => MaxValue;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1345static char IBinaryNumber<char>.AllBitsSet => (char)0xFFFF;
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
546static double IBinaryNumber<double>.AllBitsSet => BitConverter.UInt64BitsToDouble(0xFFFF_FFFF_FFFF_FFFF);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1205static Half IBinaryNumber<Half>.AllBitsSet => BitConverter.UInt16BitsToHalf(0xFFFF);
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
967static Int128 IBinaryNumber<Int128>.AllBitsSet => new Int128(0xFFFF_FFFF_FFFF_FFFF, 0xFFFF_FFFF_FFFF_FFFF);
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
496static short IBinaryNumber<short>.AllBitsSet => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
535static int IBinaryNumber<int>.AllBitsSet => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
532static long IBinaryNumber<long>.AllBitsSet => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
537static nint IBinaryNumber<nint>.AllBitsSet => -1;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
877static NFloat IBinaryNumber<NFloat>.AllBitsSet
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
459static sbyte IBinaryNumber<sbyte>.AllBitsSet => NegativeOne;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
541static float IBinaryNumber<float>.AllBitsSet => BitConverter.UInt32BitsToSingle(0xFFFF_FFFF);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
977static UInt128 IBinaryNumber<UInt128>.AllBitsSet => new UInt128(0xFFFF_FFFF_FFFF_FFFF, 0xFFFF_FFFF_FFFF_FFFF);
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
428static ushort IBinaryNumber<ushort>.AllBitsSet => MaxValue;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
466static uint IBinaryNumber<uint>.AllBitsSet => MaxValue;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
465static ulong IBinaryNumber<ulong>.AllBitsSet => MaxValue;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
469static nuint IBinaryNumber<nuint>.AllBitsSet
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3908static BigInteger IBinaryNumber<BigInteger>.AllBitsSet => MinusOne;
18 references to AllBitsSet
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
408/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1344/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
545/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1204/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
966/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
495/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
534/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
531/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
536/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
876/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
458/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
540/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
976/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
427/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
465/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
464/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
468/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3907/// <inheritdoc cref="IBinaryNumber{TSelf}.AllBitsSet" />