Packages

class LongOrder extends Order[Long] with Hash[Long] with LongBounded with LongEnumerable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LongOrder
  2. LongEnumerable
  3. BoundedEnumerable
  4. PartialNextLowerBounded
  5. PartialPreviousUpperBounded
  6. PartialNext
  7. PartialPrevious
  8. LongBounded
  9. LowerBounded
  10. UpperBounded
  11. Hash
  12. Order
  13. PartialOrder
  14. Eq
  15. Serializable
  16. Serializable
  17. AnyRef
  18. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LongOrder()

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: Long, y: Long): 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
    LongOrderOrder
  7. def comparison(x: Long, y: Long): 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. def cycleNext(a: Long): Long
    Definition Classes
    BoundedEnumerable
  9. def cyclePrevious(a: Long): Long
    Definition Classes
    BoundedEnumerable
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def eqv(x: Long, y: Long): Boolean

    Returns true if x = y, false otherwise.

    Returns true if x = y, false otherwise.

    Definition Classes
    LongOrderOrderPartialOrderEq
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. def gt(x: Long, y: Long): Boolean

    Returns true if x > y, false otherwise.

    Returns true if x > y, false otherwise.

    Definition Classes
    LongOrderOrderPartialOrder
  15. def gteqv(x: Long, y: Long): Boolean

    Returns true if x >= y, false otherwise.

    Returns true if x >= y, false otherwise.

    Definition Classes
    LongOrderOrderPartialOrder
  16. def hash(x: Long): 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
    LongOrderHash
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def lt(x: Long, y: Long): Boolean

    Returns true if x < y, false otherwise.

    Returns true if x < y, false otherwise.

    Definition Classes
    LongOrderOrderPartialOrder
  20. def lteqv(x: Long, y: Long): Boolean

    Returns true if x <= y, false otherwise.

    Returns true if x <= y, false otherwise.

    Definition Classes
    LongOrderOrderPartialOrder
  21. def max(x: Long, y: Long): Long

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

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

    Definition Classes
    LongOrderOrder
  22. def maxBound: Long

    Returns the upper limit of a type.

    Returns the upper limit of a type.

    Definition Classes
    LongBoundedUpperBounded
  23. def membersAscending: Stream[Long]

    Enumerate the members in ascending order.

    Enumerate the members in ascending order.

    Definition Classes
    PartialNextLowerBounded
  24. def membersDescending: Stream[Long]

    Enumerate the members in descending order.

    Enumerate the members in descending order.

    Definition Classes
    PartialPreviousUpperBounded
  25. def min(x: Long, y: Long): Long

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

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

    Definition Classes
    LongOrderOrder
  26. def minBound: Long

    Returns the lower limit of a type.

    Returns the lower limit of a type.

    Definition Classes
    LongBoundedLowerBounded
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def neqv(x: Long, y: Long): 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
    LongOrderOrderEq
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  31. val order: Order[Long]
    Definition Classes
    LongOrderBoundedEnumerable
  32. def partialCompare(x: Long, y: Long): 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
  33. def partialComparison(x: Long, y: Long): 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
  34. def partialNext(a: Long): Option[Long]
    Definition Classes
    LongEnumerablePartialNext
  35. def partialOrder: PartialOrder[Long]
  36. def partialPrevious(a: Long): Option[Long]
    Definition Classes
    LongEnumerablePartialPrevious
  37. def pmax(x: Long, y: Long): Option[Long]

    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
  38. def pmin(x: Long, y: Long): Option[Long]

    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
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. def toOrdering: Ordering[Long]

    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
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. def tryCompare(x: Long, y: Long): 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
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  45. 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 LongEnumerable

Inherited from BoundedEnumerable[Long]

Inherited from PartialNextLowerBounded[Long]

Inherited from PartialNext[Long]

Inherited from PartialPrevious[Long]

Inherited from LongBounded

Inherited from LowerBounded[Long]

Inherited from UpperBounded[Long]

Inherited from Hash[Long]

Inherited from Order[Long]

Inherited from PartialOrder[Long]

Inherited from Eq[Long]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped