Scala Library
|
|
scala/util/RichSorting.scala
]
class
RichSorting[K <: Ordered[K]](s : Seq[K], implicit
evidence$13 : ClassManifest[K])
extends
AnyRef
A RichSorting
object is generally created implicitly through
the use of the sort
function on an arbitrary sequence, where
the items are ordered.
Method Summary | |
def
|
sort
: Array[K]
Returns an array with a sorted copy of the RichSorting's sequence.
|
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
Scala Library
|
|