13 references to NegativeInfinity
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (11)
334
/// <returns>The equivalent <see cref="Half"/> value representing the input string. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. </returns>
342
/// <returns>The equivalent <see cref="Half"/> value representing the input string. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. </returns>
350
/// <returns>The equivalent <see cref="Half"/> value representing the input string. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. </returns>
359
/// <returns>The equivalent <see cref="Half"/> value representing the input string. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. </returns>
375
/// <returns>The equivalent <see cref="Half"/> value representing the input string. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. </returns>
386
/// <param name="result">The equivalent <see cref="Half"/> value representing the input string if the parse was successful. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. If the parse was unsuccessful, a default <see cref="Half"/> value is returned.</param>
394
/// <param name="result">The equivalent <see cref="Half"/> value representing the input string if the parse was successful. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. If the parse was unsuccessful, a default <see cref="Half"/> value is returned.</param>
410
/// <param name="result">The equivalent <see cref="Half"/> value representing the input string if the parse was successful. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. If the parse was unsuccessful, a default <see cref="Half"/> value is returned.</param>
424
/// <param name="result">The equivalent <see cref="Half"/> value representing the input string if the parse was successful. If the input exceeds Half's range, a <see cref="PositiveInfinity"/> or <see cref="
NegativeInfinity
"/> is returned. If the parse was unsuccessful, a default <see cref="Half"/> value is returned.</param>
608
return sign ?
NegativeInfinity
: PositiveInfinity;
2161
(value ==
NegativeInfinity
) ? decimal.MinValue :
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
2214
return sign < 0 ? Half.
NegativeInfinity
: Half.PositiveInfinity;
System.Text.Json (1)
System\Text\Json\Reader\JsonReaderHelper.cs (1)
321
value = Half.
NegativeInfinity
;