Packages

trait StrictEquiv extends Equiv[Float]

An equivalence for Floats which is reflexive (treats all NaNs as equivalent), and treats -0.0 and 0.0 as not equivalent; it behaves the same as java.lang.Float.compare.

Because the behaviour of Floats specified by IEEE is not consistent with behaviors required of an equivalence relation for NaN (it is not reflexive), there are two equivalences defined for Float: StrictEquiv, which is reflexive, and IeeeEquiv, which is consistent with IEEE spec and floating point operations defined in scala.math.

This equivalence may be preferable for collections.

Source
Equiv.scala
See also

IeeeEquiv

Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StrictEquiv
  2. Equiv
  3. Serializable
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def equiv(x: Float, y: Float): Boolean

    Returns true iff x is equivalent to y.

    Returns true iff x is equivalent to y.

    Definition Classes
    StrictEquivEquiv