Skip to content

Commit

Permalink
Update remarks for IsRealNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipToth committed Oct 17, 2024
1 parent bf23102 commit b6f5ac2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ static virtual TSelf CreateTruncating<TOther>(TOther value)
/// <summary>Determines if a value represents a real value.</summary>
/// <param name="value">The value to be checked.</param>
/// <returns><c>true</c> if <paramref name="value" /> is a real number; otherwise, <c>false</c>.</returns>
/// <remarks>This function returns <c>true</c> for a complex number <c>a + bi</c> where <c>b</c> is zero.</remarks>
/// <remarks>
/// <para>This function returns <c>true</c> for a complex number <c>a + bi</c> where <c>b</c> is zero.</para>
/// <para>This function checks values against the extended real number line, thus returns <c>true</c> for positive and negative infinity.</para>
/// </remarks>
static abstract bool IsRealNumber(TSelf value);

/// <summary>Determines if a value is subnormal.</summary>
Expand Down

0 comments on commit b6f5ac2

Please sign in to comment.