Scala Standard Library 2.12.18 - scala.math.Ordered (original) (raw)

object Ordered

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. Ordered

  2. AnyRef

  3. Any

  4. Hide All

  5. Show All

Value Members

  1. final def !=(arg0: Any): Boolean
    Test two objects for inequality.
  2. final def ##(): Int
    Equivalent to x.hashCode except for boxed numeric types and null.
  3. final def ==(arg0: Any): Boolean
    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).
  4. final def asInstanceOf[T0]: T0
    Cast the receiver object to be of type T0.
  5. def clone(): AnyRef
    Create a copy of the receiver object.
  6. final def eq(arg0: AnyRef): Boolean
    Tests whether the argument (that) is a reference to the receiver object (this).
  7. def equals(arg0: Any): Boolean
    The equality method for reference types.
  8. def finalize(): Unit
    Called by the garbage collector on the receiver object when there are no more references to the object.
  9. final def getClass(): Class[_]
    Returns the runtime class representation of the object.
  10. def hashCode(): Int
    The hashCode method for reference types.
  11. final def isInstanceOf[T0]: Boolean
    Test whether the dynamic type of the receiver object is T0.
  12. final def ne(arg0: AnyRef): Boolean
    Equivalent to !(this eq that).
  13. final def notify(): Unit
    Wakes up a single thread that is waiting on the receiver object's monitor.
  14. final def notifyAll(): Unit
    Wakes up all threads that are waiting on the receiver object's monitor.
  15. implicit def orderingToOrdered[T](x: T)(implicit ord: Ordering[T]): Ordered[T]
    Lens from Ordering[T] to Ordered[T]
  16. final def synchronized[T0](arg0: ⇒ T0): T0
  17. def toString(): String
    Creates a String representation of this object.
  18. final def wait(): Unit
  19. final def wait(arg0: Long, arg1: Int): Unit
  20. final def wait(arg0: Long): Unit

Ungrouped

Scala programming documentation. Copyright (c) 2002-2023 EPFL, with contributions from Lightbend.