|
Scala 2.2.0.9025
|
abstract
trait
PartiallyOrdered
[a]
extends
java.lang.Object with
scala.ScalaObjectDef Summary | |
def
<
[a <: b]
(that: b)(view$1: scala.Function1[b, scala.PartiallyOrdered[b]])
: scala.Boolean
|
|
def
<=
[a <: b]
(that: b)(view$3: scala.Function1[b, scala.PartiallyOrdered[b]])
: scala.Boolean
|
|
def
>
[a <: b]
(that: b)(view$2: scala.Function1[b, scala.PartiallyOrdered[b]])
: scala.Boolean
|
|
def
>=
[a <: b]
(that: b)(view$4: scala.Function1[b, scala.PartiallyOrdered[b]])
: scala.Boolean
|
|
abstract
|
def
tryCompareTo
[a <: b]
(that: b)(view$0: scala.Function1[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
<
[a <: b](that: b)(view$1: scala.Function1[b, scala.PartiallyOrdered[b]]): scala.Boolean
def
<=
[a <: b](that: b)(view$3: scala.Function1[b, scala.PartiallyOrdered[b]]): scala.Boolean
def
>
[a <: b](that: b)(view$2: scala.Function1[b, scala.PartiallyOrdered[b]]): scala.Boolean
def
>=
[a <: b](that: b)(view$4: scala.Function1[b, scala.PartiallyOrdered[b]]): scala.Boolean
abstract
def
tryCompareTo
[a <: b](that: b)(view$0: scala.Function1[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