Exemple #1
0
 public bool Equals <S>(FloatingPoint <S> other)
     where S : IEquatable <S>, IComparable <S>
 => Value.Equals(other.Value);
Exemple #2
0
 public bool Equals(FloatingPoint <T> other)
 => Value.Equals(other.Value);
Exemple #3
0
 public int CompareTo(FloatingPoint <T> other)
 => Implementation.Compare(Value, other.Value);