class ListPartialOrder[A] extends PartialOrder[List[A]]
- Alphabetic
- By Inheritance
- ListPartialOrder
- PartialOrder
- Eq
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ListPartialOrder()(implicit ev: PartialOrder[A])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
eqv(x: List[A], y: List[A]): Boolean
Returns true if
x=y, false otherwise.Returns true if
x=y, false otherwise.- Definition Classes
- PartialOrder → Eq
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
gt(x: List[A], y: List[A]): Boolean
Returns true if
x>y, false otherwise.Returns true if
x>y, false otherwise.- Definition Classes
- PartialOrder
-
def
gteqv(x: List[A], y: List[A]): Boolean
Returns true if
x>=y, false otherwise.Returns true if
x>=y, false otherwise.- Definition Classes
- PartialOrder
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lt(x: List[A], y: List[A]): Boolean
Returns true if
x<y, false otherwise.Returns true if
x<y, false otherwise.- Definition Classes
- PartialOrder
-
def
lteqv(x: List[A], y: List[A]): Boolean
Returns true if
x<=y, false otherwise.Returns true if
x<=y, false otherwise.- Definition Classes
- PartialOrder
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
neqv(x: List[A], y: List[A]): Boolean
Returns
falseifxandyare equivalent,trueotherwise.Returns
falseifxandyare equivalent,trueotherwise.- Definition Classes
- Eq
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
partialCompare(xs: List[A], ys: List[A]): Double
Result of comparing
xwithy.Result of comparing
xwithy. Returns NaN if operands are not comparable. If operands are comparable, returns a Double whose sign is: - negative iffx < y- zero iffx = y- positive iffx > y- Definition Classes
- ListPartialOrder → PartialOrder
-
def
partialComparison(x: List[A], y: List[A]): Option[Comparison]
Like
partialCompare, but returns a cats.kernel.Comparison instead of an Double.Like
partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.- Definition Classes
- PartialOrder
-
def
pmax(x: List[A], y: List[A]): Option[List[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
-
def
pmin(x: List[A], y: List[A]): Option[List[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
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tryCompare(x: List[A], y: List[A]): Option[Int]
Result of comparing
xwithy.Result of comparing
xwithy. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is: - negative iffx < y- zero iffx = y- positive iffx > y- Definition Classes
- PartialOrder
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()