2 implementations of NegativeZero
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
801static double IFloatingPointIeee754<double>.NegativeZero => NegativeZero;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
798static float IFloatingPointIeee754<float>.NegativeZero => NegativeZero;
10 references to NegativeZero
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
800/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1436/// <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)
797/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.NegativeZero" />