Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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