PartiallyOrdered

scala.math.PartiallyOrdered

A class for partially ordered data.

Attributes

Graph
Supertypes
class Any

Members list

Type members

Value members

Abstract methods

Result of comparing '''this''' with operand that. Returns None if operands are not comparable. If operands are comparable, returns Some(x) where

Result of comparing '''this''' with operand that. Returns None if operands are not comparable. If operands are comparable, returns Some(x) where

  • x < 0 iff '''this''' &lt; that
  • x == 0 iff '''this''' == that
  • x > 0 iff '''this''' &gt; that

Attributes

Concrete methods

def <[B >: A : AsPartiallyOrdered](that: B): Boolean
def <=[B >: A : AsPartiallyOrdered](that: B): Boolean
def >[B >: A : AsPartiallyOrdered](that: B): Boolean
def >=[B >: A : AsPartiallyOrdered](that: B): Boolean