Packages

c

cats.kernel.instances

DurationOrder

class DurationOrder extends Order[Duration] with Hash[Duration] with DurationBounded

This ordering is valid for all defined durations.

The value Duration.Undefined breaks our laws, because undefined values are not equal to themselves.

Self Type
DurationOrder
Source
DurationInstances.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DurationOrder
  2. DurationBounded
  3. UpperBounded
  4. LowerBounded
  5. Hash
  6. Order
  7. PartialOrder
  8. Eq
  9. Serializable
  10. Serializable
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DurationOrder()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  6. def compare(x: Duration, y: Duration): Int

    Result of comparing x with y.

    Result of comparing x with y. Returns an Int whose sign is: - negative iff x < y - zero iff x = y - positive iff x > y

    Definition Classes
    DurationOrderOrder
  7. def comparison(x: Duration, y: Duration): Comparison

    Like compare, but returns a cats.kernel.Comparison instead of an Int.

    Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

    Definition Classes
    Order
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def eqv(x: Duration, y: Duration): Boolean

    Returns true if x = y, false otherwise.

    Returns true if x = y, false otherwise.

    Definition Classes
    DurationOrderOrderPartialOrderEq
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. def gt(x: Duration, y: Duration): Boolean

    Returns true if x > y, false otherwise.

    Returns true if x > y, false otherwise.

    Definition Classes
    DurationOrderOrderPartialOrder
  13. def gteqv(x: Duration, y: Duration): Boolean

    Returns true if x >= y, false otherwise.

    Returns true if x >= y, false otherwise.

    Definition Classes
    DurationOrderOrderPartialOrder
  14. def hash(x: Duration): Int

    Returns the hash code of the given object under this hashing scheme.

    Returns the hash code of the given object under this hashing scheme.

    Definition Classes
    DurationOrderHash
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def lt(x: Duration, y: Duration): Boolean

    Returns true if x < y, false otherwise.

    Returns true if x < y, false otherwise.

    Definition Classes
    DurationOrderOrderPartialOrder
  18. def lteqv(x: Duration, y: Duration): Boolean

    Returns true if x <= y, false otherwise.

    Returns true if x <= y, false otherwise.

    Definition Classes
    DurationOrderOrderPartialOrder
  19. def max(x: Duration, y: Duration): Duration

    If x > y, return x, else return y.

    If x > y, return x, else return y.

    Definition Classes
    DurationOrderOrder
  20. def maxBound: Duration

    Returns the upper limit of a type.

    Returns the upper limit of a type.

    Definition Classes
    DurationBoundedUpperBounded
  21. def min(x: Duration, y: Duration): Duration

    If x < y, return x, else return y.

    If x < y, return x, else return y.

    Definition Classes
    DurationOrderOrder
  22. def minBound: Duration

    Returns the lower limit of a type.

    Returns the lower limit of a type.

    Definition Classes
    DurationBoundedLowerBounded
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def neqv(x: Duration, y: Duration): Boolean

    Returns true if x != y, false otherwise.

    Returns true if x != y, false otherwise.

    Note: this default implementation provided by Order is the same as the one defined in Eq, but for purposes of binary compatibility, the override in Order has not yet been removed. See this discussion.

    Definition Classes
    DurationOrderOrderEq
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  27. def partialCompare(x: Duration, y: Duration): Double

    Result of comparing x with y.

    Result of comparing x with y. Returns NaN if operands are not comparable. If operands are comparable, returns a Double whose sign is:

    • negative iff x < y
    • zero iff x = y
    • positive iff x > y
    Definition Classes
    OrderPartialOrder
  28. def partialComparison(x: Duration, y: Duration): Option[Comparison]

    Like partialCompare, but returns a cats.kernel.Comparison instead of an Double.

    Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

    Definition Classes
    PartialOrder
  29. val partialOrder: PartialOrder[Duration]
    Definition Classes
    DurationOrderUpperBoundedLowerBounded
  30. def pmax(x: Duration, y: Duration): Option[Duration]

    Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

    Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

    Definition Classes
    PartialOrder
  31. def pmin(x: Duration, y: Duration): Option[Duration]

    Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

    Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

    Definition Classes
    PartialOrder
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toOrdering: Ordering[Duration]

    Convert a Order[A] to a scala.math.Ordering[A] instance.

    Convert a Order[A] to a scala.math.Ordering[A] instance.

    Definition Classes
    Order
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def tryCompare(x: Duration, y: Duration): Option[Int]

    Result of comparing x with y.

    Result of comparing x with y. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is:

    • negative iff x < y
    • zero iff x = y
    • positive iff x > y
    Definition Classes
    PartialOrder
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from DurationBounded

Inherited from UpperBounded[Duration]

Inherited from LowerBounded[Duration]

Inherited from Hash[Duration]

Inherited from Order[Duration]

Inherited from PartialOrder[Duration]

Inherited from Eq[Duration]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped