1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Removed deprecated IOp* conformance, added missing consts and properties

This commit is contained in:
Brian Fiete 2020-08-29 07:10:04 -07:00
parent 783bdb15be
commit ffee0a2aa3
15 changed files with 67 additions and 30 deletions

View file

@ -3,7 +3,7 @@ using System.Globalization;
namespace System
{
#unwarn
struct Float : float, IFloating, ISigned, IFormattable, IHashable, IEquatable<float>, IOpComparable, IOpNegatable, IOpAddable, IOpSubtractable, IOpMultiplicable, IOpDividable, ICanBeNaN
struct Float : float, IFloating, ISigned, IFormattable, IHashable, IEquatable<float>, ICanBeNaN
{
public const float MinValue = (float)-3.40282346638528859e+38;
public const float Epsilon = (float)1.4e-45;