scala.runtime

OrderedProxy

trait OrderedProxy[T] extends Ordered[T] with Typed[T]

Linear Supertypes
Typed[T], Proxy, math.Ordered[T], Comparable[T], Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OrderedProxy
  2. Typed
  3. Proxy
  4. Ordered
  5. Comparable
  6. Any
Implicitly
  1. by orderingToOrdered
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Definition Classes
    Any
  2. abstract def ord: Ordering[T]

    Attributes
    protected
  3. abstract def self: T

    Definition Classes
    TypedProxy

Concrete Value Members

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

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

    Definition Classes
    Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to any2stringadd[OrderedProxy[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (OrderedProxy[T], B)

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to ArrowAssoc[OrderedProxy[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def <(that: T): Boolean

    Returns true if this is less than that

    Returns true if this is less than that

    Definition Classes
    Ordered
  6. def <=(that: T): Boolean

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

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

    Definition Classes
    Ordered
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def >(that: T): Boolean

    Returns true if this is greater than that.

    Returns true if this is greater than that.

    Definition Classes
    Ordered
  9. def >=(that: T): Boolean

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

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

    Definition Classes
    Ordered
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def compare(y: T): Int

    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
    Definition Classes
    OrderedProxyOrdered
  12. def compareTo(that: T): Int

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Definition Classes
    Ordered → Comparable
  13. def ensuring(cond: (OrderedProxy[T]) ⇒ Boolean, msg: ⇒ Any): OrderedProxy[T]

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to Ensuring[OrderedProxy[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (OrderedProxy[T]) ⇒ Boolean): OrderedProxy[T]

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to Ensuring[OrderedProxy[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: ⇒ Any): OrderedProxy[T]

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to Ensuring[OrderedProxy[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): OrderedProxy[T]

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to Ensuring[OrderedProxy[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def equals(that: Any): Boolean

    Definition Classes
    Proxy → Any
  18. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to Predef.StringFormat[OrderedProxy[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. def hashCode(): Int

    Definition Classes
    Proxy → Any
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def toString(): String

    Definition Classes
    Proxy → Any
  22. def [B](y: B): (OrderedProxy[T], B)

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to ArrowAssoc[OrderedProxy[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def <(that: OrderedProxy[T]): Boolean

    Returns true if this is less than that

    Returns true if this is less than that

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to math.Ordered[OrderedProxy[T]] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[OrderedProxy[T]] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (orderedProxy: math.Ordered[OrderedProxy[T]]).<(that)
    Definition Classes
    Ordered
  2. def <=(that: OrderedProxy[T]): Boolean

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

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

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to math.Ordered[OrderedProxy[T]] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[OrderedProxy[T]] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (orderedProxy: math.Ordered[OrderedProxy[T]]).<=(that)
    Definition Classes
    Ordered
  3. def >(that: OrderedProxy[T]): Boolean

    Returns true if this is greater than that.

    Returns true if this is greater than that.

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to math.Ordered[OrderedProxy[T]] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[OrderedProxy[T]] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (orderedProxy: math.Ordered[OrderedProxy[T]]).>(that)
    Definition Classes
    Ordered
  4. def >=(that: OrderedProxy[T]): Boolean

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

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

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to math.Ordered[OrderedProxy[T]] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[OrderedProxy[T]] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (orderedProxy: math.Ordered[OrderedProxy[T]]).>=(that)
    Definition Classes
    Ordered
  5. def compare(that: OrderedProxy[T]): Int

    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
    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to math.Ordered[OrderedProxy[T]] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[OrderedProxy[T]] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (orderedProxy: math.Ordered[OrderedProxy[T]]).compare(that)
    Definition Classes
    Ordered
  6. def compareTo(that: OrderedProxy[T]): Int

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Implicit information
    This member is added by an implicit conversion from OrderedProxy[T] to math.Ordered[OrderedProxy[T]] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[OrderedProxy[T]] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (orderedProxy: math.Ordered[OrderedProxy[T]]).compareTo(that)
    Definition Classes
    Ordered → Comparable

Inherited from Typed[T]

Inherited from Proxy

Inherited from math.Ordered[T]

Inherited from Comparable[T]

Inherited from Any

Inherited by implicit conversion orderingToOrdered from OrderedProxy[T] to math.Ordered[OrderedProxy[T]]

Inherited by implicit conversion any2stringadd from OrderedProxy[T] to any2stringadd[OrderedProxy[T]]

Inherited by implicit conversion StringFormat from OrderedProxy[T] to Predef.StringFormat[OrderedProxy[T]]

Inherited by implicit conversion Ensuring from OrderedProxy[T] to Ensuring[OrderedProxy[T]]

Inherited by implicit conversion ArrowAssoc from OrderedProxy[T] to ArrowAssoc[OrderedProxy[T]]

Ungrouped