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