20 implementations of IsCanonical
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
620
static bool INumberBase<byte>.
IsCanonical
(byte value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1479
static bool INumberBase<char>.
IsCanonical
(char value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1125
static bool INumberBase<double>.
IsCanonical
(double value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1816
static bool INumberBase<Half>.
IsCanonical
(Half value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1351
static bool INumberBase<Int128>.
IsCanonical
(Int128 value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
727
static bool INumberBase<short>.
IsCanonical
(short value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
769
static bool INumberBase<int>.
IsCanonical
(int value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
766
static bool INumberBase<long>.
IsCanonical
(long value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
779
static bool INumberBase<nint>.
IsCanonical
(nint value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1456
static bool INumberBase<BFloat16>.
IsCanonical
(BFloat16 value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1278
static bool INumberBase<NFloat>.
IsCanonical
(NFloat value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
706
static bool INumberBase<sbyte>.
IsCanonical
(sbyte value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1122
static bool INumberBase<float>.
IsCanonical
(float value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1543
static bool INumberBase<UInt128>.
IsCanonical
(UInt128 value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
625
static bool INumberBase<ushort>.
IsCanonical
(ushort value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
690
static bool INumberBase<uint>.
IsCanonical
(uint value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
697
static bool INumberBase<ulong>.
IsCanonical
(ulong value) => true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
686
static bool INumberBase<nuint>.
IsCanonical
(nuint value) => true;
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
3983
static bool INumberBase<BigInteger>.
IsCanonical
(BigInteger value) => true;
System\Numerics\Complex.cs (1)
1006
static bool INumberBase<Complex>.
IsCanonical
(Complex value) => true;
22 references to IsCanonical
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsCanonical.cs (1)
67
public static bool Invoke(T x) => T.
IsCanonical
(x);
System.Private.CoreLib (19)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
619
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1478
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1349
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1124
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1815
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1350
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
726
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
768
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
765
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
778
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1455
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1277
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
705
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1121
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1542
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
624
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
689
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
696
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
685
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
3982
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />
System\Numerics\Complex.cs (1)
1005
/// <inheritdoc cref="INumberBase{TSelf}.
IsCanonical
(TSelf)" />