Packages

c

cats.kernel.instances

BooleanOrder

class BooleanOrder extends Order[Boolean] with Hash[Boolean] with BooleanBounded with BooleanEnumerable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BooleanOrder
  2. BooleanEnumerable
  3. BoundedEnumerable
  4. PartialNextLowerBounded
  5. PartialPreviousUpperBounded
  6. PartialNext
  7. PartialPrevious
  8. BooleanBounded
  9. UpperBounded
  10. LowerBounded
  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 BooleanOrder()

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: Boolean, y: Boolean): 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
    BooleanOrderOrder
  7. def comparison(x: Boolean, y: Boolean): 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: Boolean): Boolean
    Definition Classes
    BoundedEnumerable
  9. def cyclePrevious(a: Boolean): Boolean
    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: Boolean, y: Boolean): Boolean

    Returns true if x = y, false otherwise.

    Returns true if x = y, false otherwise.

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

    Returns true if x > y, false otherwise.

    Returns true if x > y, false otherwise.

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

    Returns true if x >= y, false otherwise.

    Returns true if x >= y, false otherwise.

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

    Returns true if x < y, false otherwise.

    Returns true if x < y, false otherwise.

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

    Returns true if x <= y, false otherwise.

    Returns true if x <= y, false otherwise.

    Definition Classes
    BooleanOrderOrderPartialOrder
  21. def max(x: Boolean, y: Boolean): Boolean

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

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

    Definition Classes
    BooleanOrderOrder
  22. def maxBound: Boolean

    Returns the upper limit of a type.

    Returns the upper limit of a type.

    Definition Classes
    BooleanBoundedUpperBounded
  23. def membersAscending: Stream[Boolean]

    Enumerate the members in ascending order.

    Enumerate the members in ascending order.

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

    Enumerate the members in descending order.

    Enumerate the members in descending order.

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

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

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

    Definition Classes
    BooleanOrderOrder
  26. def minBound: Boolean

    Returns the lower limit of a type.

    Returns the lower limit of a type.

    Definition Classes
    BooleanBoundedLowerBounded
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def neqv(x: Boolean, y: Boolean): 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
    BooleanOrderOrderEq
  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[Boolean]
    Definition Classes
    BooleanOrderBoundedEnumerable
  32. def partialCompare(x: Boolean, y: Boolean): 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: Boolean, y: Boolean): 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: Boolean): Option[Boolean]
    Definition Classes
    BooleanEnumerablePartialNext
  35. def partialOrder: PartialOrder[Boolean]
  36. def partialPrevious(a: Boolean): Option[Boolean]
    Definition Classes
    BooleanEnumerablePartialPrevious
  37. def pmax(x: Boolean, y: Boolean): Option[Boolean]

    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: Boolean, y: Boolean): Option[Boolean]

    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[Boolean]

    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: Boolean, y: Boolean): 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 BooleanEnumerable

Inherited from BoundedEnumerable[Boolean]

Inherited from PartialNext[Boolean]

Inherited from PartialPrevious[Boolean]

Inherited from BooleanBounded

Inherited from UpperBounded[Boolean]

Inherited from LowerBounded[Boolean]

Inherited from Hash[Boolean]

Inherited from Order[Boolean]

Inherited from PartialOrder[Boolean]

Inherited from Eq[Boolean]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped