Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
sq
  • Loading branch information
Prashanth Govindarajan authored and github-actions committed Sep 9, 2021
commit 31d90677a26d2f778b7b631aadcf5db2749ebe30
16 changes: 8 additions & 8 deletions src/libraries/System.Runtime/ref/System.Runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3287,21 +3287,21 @@ public GopherStyleUriParser() { }
static System.Half IFloatingPoint<System.Half>.Truncate(System.Half x) { throw null; }

[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsFinite(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsFinite(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsInfinity(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsInfinity(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsNaN(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsNaN(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsNegative(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsNegative(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsNegativeInfinity(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsNegativeInfinity(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsNormal(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsNormal(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsPositiveInfinity(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsPositiveInfinity(System.Half x) { throw null; }
[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static bool IFloatingPoint<Half>.IsSubnormal(Half x) { throw null; }
static bool IFloatingPoint<System.Half>.IsSubnormal(System.Half x) { throw null; }

[System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
static System.Half IIncrementOperators<System.Half>.operator ++(System.Half value) { throw null; }
Expand Down