PartiallyOrdered

scalation.mathstat.PartiallyOrdered
trait PartiallyOrdered[+A]

Attributes

Graph
Supertypes
class Any
Known subtypes
class VectorC
class VectorD
class VectorI
class VectorL
class VectorS
class VectorT
Show all

Members list

Type members

Types

Value members

Abstract methods

infix def tryCompareTo[B >: A : AsPartiallyOrdered](that: B): Option[Int]

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