2 implementations of NegativeZero
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
803static double IFloatingPointIeee754<double>.NegativeZero => NegativeZero;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
800static float IFloatingPointIeee754<float>.NegativeZero => NegativeZero;
11 references to NegativeZero
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
802/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1432/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1091/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
81get => Create(T.NegativeZero);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1153/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
109/// <summary>Gets a new vector with all elements initialized to <see cref="IFloatingPointIeee754{TSelf}.NegativeZero" />.</summary> 114get => Create(T.NegativeZero);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
110get => Create(T.NegativeZero);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
109get => Create(T.NegativeZero);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
82get => Create(T.NegativeZero);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
799/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />