|
Scala 2.3.3.10048
|
abstract
trait
PartiallyOrdered
[+a]
extends
java.lang.Object
with
scala.ScalaObject
Def Summary | |
def
<
[b >: a]
(that: b)(view$1: (b) => scala.PartiallyOrdered[b])
: scala.Boolean
|
|
def
<=
[b >: a]
(that: b)(view$3: (b) => scala.PartiallyOrdered[b])
: scala.Boolean
|
|
def
>
[b >: a]
(that: b)(view$2: (b) => scala.PartiallyOrdered[b])
: scala.Boolean
|
|
def
>=
[b >: a]
(that: b)(view$4: (b) => scala.PartiallyOrdered[b])
: scala.Boolean
|
|
abstract
|
def
tryCompareTo
[b >: a]
(that: b)(view$0: (b) => scala.PartiallyOrdered[b])
: scala.Option[scala.Int]
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 < that
x == 0 iff this == that
x > 0 iff this > that
|
Def Detail |
def
<
[b >: a](that: b)(view$1: (b) => scala.PartiallyOrdered[b]): scala.Boolean
def
<=
[b >: a](that: b)(view$3: (b) => scala.PartiallyOrdered[b]): scala.Boolean
def
>
[b >: a](that: b)(view$2: (b) => scala.PartiallyOrdered[b]): scala.Boolean
def
>=
[b >: a](that: b)(view$4: (b) => scala.PartiallyOrdered[b]): scala.Boolean
abstract
def
tryCompareTo
[b >: a](that: b)(view$0: (b) => scala.PartiallyOrdered[b]): scala.Option[scala.Int]
this
with operand that
.
Returns None
if operands are not comparable.
If operands are comparable, returns Some(x)
where
x < 0
iff this < that
x == 0
iff this == that
x > 0
iff this > that