@@ -2552,6 +2552,23 @@ public DivideByZeroException(string? message, System.Exception? innerException)
25522552 [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
25532553 static double IFloatingPoint<double>.Truncate(double x) { throw null; }
25542554
2555+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2556+ static bool IFloatingPoint<double>.IsFinite(double d) { throw null; }
2557+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2558+ static bool IFloatingPoint<double>.IsInfinity(double d) { throw null; }
2559+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2560+ static bool IFloatingPoint<double>.IsNaN(double d) { throw null; }
2561+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2562+ static bool IFloatingPoint<double>.IsNegative(double d) { throw null; }
2563+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2564+ static bool IFloatingPoint<double>.IsNegativeInfinity(double d) { throw null; }
2565+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2566+ static bool IFloatingPoint<double>.IsNormal(double d) { throw null; }
2567+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2568+ static bool IFloatingPoint<double>.IsPositiveInfinity(double d) { throw null; }
2569+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
2570+ static bool IFloatingPoint<double>.IsSubnormal(double d) { throw null; }
2571+
25552572 [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
25562573 static double IIncrementOperators<double>.operator ++(double value) { throw null; }
25572574
@@ -3269,6 +3286,23 @@ public GopherStyleUriParser() { }
32693286 [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
32703287 static System.Half IFloatingPoint<System.Half>.Truncate(System.Half x) { throw null; }
32713288
3289+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3290+ static bool IFloatingPoint<System.Half>.IsFinite(System.Half x) { throw null; }
3291+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3292+ static bool IFloatingPoint<System.Half>.IsInfinity(System.Half x) { throw null; }
3293+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3294+ static bool IFloatingPoint<System.Half>.IsNaN(System.Half x) { throw null; }
3295+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3296+ static bool IFloatingPoint<System.Half>.IsNegative(System.Half x) { throw null; }
3297+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3298+ static bool IFloatingPoint<System.Half>.IsNegativeInfinity(System.Half x) { throw null; }
3299+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3300+ static bool IFloatingPoint<System.Half>.IsNormal(System.Half x) { throw null; }
3301+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3302+ static bool IFloatingPoint<System.Half>.IsPositiveInfinity(System.Half x) { throw null; }
3303+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
3304+ static bool IFloatingPoint<System.Half>.IsSubnormal(System.Half x) { throw null; }
3305+
32723306 [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
32733307 static System.Half IIncrementOperators<System.Half>.operator ++(System.Half value) { throw null; }
32743308
@@ -5594,6 +5628,23 @@ public SerializableAttribute() { }
55945628 [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
55955629 static float IFloatingPoint<float>.Truncate(float x) { throw null; }
55965630
5631+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5632+ static bool IFloatingPoint<float>.IsFinite(float x) { throw null; }
5633+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5634+ static bool IFloatingPoint<float>.IsInfinity(float x) { throw null; }
5635+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5636+ static bool IFloatingPoint<float>.IsNaN(float x) { throw null; }
5637+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5638+ static bool IFloatingPoint<float>.IsNegative(float x) { throw null; }
5639+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5640+ static bool IFloatingPoint<float>.IsNegativeInfinity(float x) { throw null; }
5641+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5642+ static bool IFloatingPoint<float>.IsNormal(float x) { throw null; }
5643+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5644+ static bool IFloatingPoint<float>.IsPositiveInfinity(float x) { throw null; }
5645+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
5646+ static bool IFloatingPoint<float>.IsSubnormal(float x) { throw null; }
5647+
55975648 [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
55985649 static float IIncrementOperators<float>.operator ++(float value) { throw null; }
55995650
@@ -6062,6 +6113,11 @@ public ThreadStaticAttribute() { }
60626113
60636114 [System.Runtime.Versioning.RequiresPreviewFeatures]
60646115 static System.TimeSpan ISubtractionOperators<System.TimeOnly, System.TimeOnly, System.TimeSpan>.operator -(System.TimeOnly left, System.TimeOnly right) { throw null; }
6116+
6117+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
6118+ static System.TimeOnly IMinMaxValue<System.TimeOnly>.MinValue { get { throw null; } }
6119+ [System.Runtime.Versioning.RequiresPreviewFeaturesAttribute]
6120+ static System.TimeOnly IMinMaxValue<System.TimeOnly>.MaxValue { get { throw null; } }
60656121#endif // FEATURE_GENERIC_MATH
60666122 }
60676123 public partial class TimeoutException : System.SystemException
0 commit comments