object Sortable
Companion object for Sortable
that provides implicit implementations for the following types:
scala.collection.GenSeq
Array
java.util.List
- Source
- Sortable.scala
- Alphabetic
- By Inheritance
- Sortable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
implicit
def
sortableNatureOfArray[E](implicit ordering: Ordering[E]): Sortable[Array[E]]
Enable
Sortable
implementation forArray
Enable
Sortable
implementation forArray
- E
type of elements in the
Array
- ordering
scala.math.Ordering
of typeE
- returns
Sortable[Array[E]]
that supportsArray
inbe
sortable
syntax
-
implicit
def
sortableNatureOfJavaList[E, JLIST[e] <: List[e]](implicit ordering: Ordering[E]): Sortable[JLIST[E]]
Enable
Sortable
implementation forjava.util.List
Enable
Sortable
implementation forjava.util.List
- E
type of elements in the
java.util.List
- JLIST
any subtype of
java.util.List
- ordering
scala.math.Ordering
of typeE
- returns
Sortable[JLIST[E]]
that supportsjava.util.List
inbe
sortable
syntax
-
implicit
def
sortableNatureOfSeq[E, SEQ[e] <: GenSeq[e]](implicit ordering: Ordering[E]): Sortable[SEQ[E]]
Enable
Sortable
implementation forscala.collection.GenSeq
Enable
Sortable
implementation forscala.collection.GenSeq
- E
type of elements in the
scala.collection.GenSeq
- SEQ
any subtype of
scala.collection.GenSeq
- ordering
scala.math.Ordering
of typeE
- returns
Sortable[SEQ[E]]
that supportsscala.collection.GenSeq
inbe
sortable
syntax
-
implicit
def
sortableNatureOfString(implicit ordering: Ordering[Char]): Sortable[String]
Enable
Sortable
implementation forString
Enable
Sortable
implementation forString
- ordering
scala.math.Ordering
of typeChar
- returns
Sortable[String]
that supportsString
inbe
sortable
syntax