cats.kernel.std

StreamOrder

class StreamOrder[A] extends Order[Stream[A]]

Linear Supertypes
Order[Stream[A]], PartialOrder[Stream[A]], Eq[Stream[A]], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StreamOrder
  2. Order
  3. PartialOrder
  4. Eq
  5. Serializable
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StreamOrder()(implicit ev: Order[A])

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

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

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def and(that: Eq[Stream[A]]): Eq[Stream[A]]

    Return an Eq that gives the result of the and of this and that note this is idempotent

    Return an Eq that gives the result of the and of this and that note this is idempotent

    Definition Classes
    Eq
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def compare(xs: Stream[A], ys: Stream[A]): 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
    StreamOrderOrder
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def eqv(x: Stream[A], y: Stream[A]): Boolean

    Returns true if x = y, false otherwise.

    Returns true if x = y, false otherwise.

    Definition Classes
    OrderPartialOrderEq
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def gt(x: Stream[A], y: Stream[A]): Boolean

    Returns true if x > y, false otherwise.

    Returns true if x > y, false otherwise.

    Definition Classes
    OrderPartialOrder
  16. def gteqv(x: Stream[A], y: Stream[A]): Boolean

    Returns true if x >= y, false otherwise.

    Returns true if x >= y, false otherwise.

    Definition Classes
    OrderPartialOrder
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def lt(x: Stream[A], y: Stream[A]): Boolean

    Returns true if x < y, false otherwise.

    Returns true if x < y, false otherwise.

    Definition Classes
    OrderPartialOrder
  20. def lteqv(x: Stream[A], y: Stream[A]): Boolean

    Returns true if x <= y, false otherwise.

    Returns true if x <= y, false otherwise.

    Definition Classes
    OrderPartialOrder
  21. def max(x: Stream[A], y: Stream[A]): Stream[A]

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

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

    Definition Classes
    Order
  22. def min(x: Stream[A], y: Stream[A]): Stream[A]

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

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

    Definition Classes
    Order
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def neqv(x: Stream[A], y: Stream[A]): Boolean

    Returns true if x != y, false otherwise.

    Returns true if x != y, false otherwise.

    Definition Classes
    OrderEq
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. def on[B](f: (B) ⇒ Stream[A]): Order[B]

    Defines an order on B by mapping B to A using f and using As order to order B.

    Defines an order on B by mapping B to A using f and using As order to order B.

    Definition Classes
    OrderPartialOrderEq
  28. def or(that: Eq[Stream[A]]): Eq[Stream[A]]

    Return an Eq that gives the result of the or of this and that Note this is idempotent

    Return an Eq that gives the result of the or of this and that Note this is idempotent

    Definition Classes
    Eq
  29. def partialCompare(x: Stream[A], y: Stream[A]): 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
  30. def pmax(x: Stream[A], y: Stream[A]): Option[Stream[A]]

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

    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. def reverse: Order[Stream[A]]

    Defines an ordering on A where all arrows switch direction.

    Defines an ordering on A where all arrows switch direction.

    Definition Classes
    OrderPartialOrder
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toOrdering: Ordering[Stream[A]]

    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
  35. def toString(): String

    Definition Classes
    AnyRef → Any
  36. def tryCompare(x: Stream[A], y: Stream[A]): 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
  37. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def whenEqual(o: Order[Stream[A]]): Order[Stream[A]]

    Returns a new Order[A] instance that first compares by the original Order instance and uses the provided Order instance to "break ties".

    Returns a new Order[A] instance that first compares by the original Order instance and uses the provided Order instance to "break ties".

    That is, x.whenEqual(y) creates an Order that first orders by x and then (if two elements are equal) falls back to y for the comparison.

    Definition Classes
    Order

Inherited from Order[Stream[A]]

Inherited from PartialOrder[Stream[A]]

Inherited from Eq[Stream[A]]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped