Trait/Object

scala.math

Ordered

Related Docs: object Ordered | package math

Permalink

trait Ordered[A] extends Comparable[A]

A trait for data that have a single, natural ordering. See scala.math.Ordering before using this trait for more information about whether to use scala.math.Ordering instead.

Classes that implement this trait can be sorted with scala.util.Sorting and can be compared with standard comparison operators (e.g. > and <).

Ordered should be used for data with a single, natural ordering (like integers) while Ordering allows for multiple ordering implementations. An Ordering instance will be implicitly created if necessary.

scala.math.Ordering is an alternative to this trait that allows multiple orderings to be defined for the same type.

scala.math.PartiallyOrdered is an alternative to this trait for partially ordered data.

For example, create a simple class that implements Ordered and then sort it with scala.util.Sorting:

case class OrderedClass(n:Int) extends Ordered[OrderedClass] {
	def compare(that: OrderedClass) =  this.n - that.n
}

val x = Array(OrderedClass(1), OrderedClass(5), OrderedClass(3))
scala.util.Sorting.quickSort(x)
x

It is important that the equals method for an instance of Ordered[A] be consistent with the compare method. However, due to limitations inherent in the type erasure semantics, there is no reasonable way to provide a default implementation of equality for instances of Ordered[A]. Therefore, if you need to be able to use equality on an instance of Ordered[A] you must provide it yourself either when inheriting or instantiating.

It is important that the hashCode method for an instance of Ordered[A] be consistent with the compare method. However, it is not possible to provide a sensible default implementation. Therefore, if you need to be able compute the hash of an instance of Ordered[A] you must provide it yourself either when inheriting or instantiating.

Version

1.1, 2006-07-24

See also

scala.math.Ordering, scala.math.PartiallyOrdered

Linear Supertypes
Comparable[A], Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ordered
  2. Comparable
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def compare(that: A): Int

    Permalink

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Implement this method to determine how instances of A will be sorted.

    Returns x where:

    • x < 0 when this < that
    • x == 0 when this == that
    • x > 0 when this > that
  2. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. def <(that: A): Boolean

    Permalink

    Returns true if this is less than that

  4. def <=(that: A): Boolean

    Permalink

    Returns true if this is less than or equal to that.

  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  6. def >(that: A): Boolean

    Permalink

    Returns true if this is greater than that.

  7. def >=(that: A): Boolean

    Permalink

    Returns true if this is greater than or equal to that.

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def compareTo(that: A): Int

    Permalink

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Definition Classes
    Ordered → Comparable
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def toString(): String

    Permalink
    Definition Classes
    Any

Inherited from Comparable[A]

Inherited from Any

Ungrouped