Ordering

scala.collection.immutable.TreeSeqMap.Ordering
sealed abstract class Ordering[+T]

Attributes

Source
TreeSeqMap.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

final def append[S >: T](ordinal: Int, value: S): Ordering[S]

Attributes

Source
TreeSeqMap.scala
final def exclude(ordinal: Int): Ordering[T]

Attributes

Source
TreeSeqMap.scala
final def format: String

Attributes

Source
TreeSeqMap.scala
final def head: T

Attributes

Source
TreeSeqMap.scala
final def headOption: Option[T]

Attributes

Source
TreeSeqMap.scala
final def headTail: (T, Ordering[T])

Attributes

Source
TreeSeqMap.scala
final def include[S >: T](ordinal: Int, value: S): Ordering[S]

Attributes

Source
TreeSeqMap.scala
final def init: Ordering[T]

Attributes

Source
TreeSeqMap.scala
final def initLast: (Ordering[T], T)

Attributes

Source
TreeSeqMap.scala
final def iterator: Iterator[T]

Attributes

Source
TreeSeqMap.scala
final def last: T

Attributes

Source
TreeSeqMap.scala
final def lastOption: Option[T]

Attributes

Source
TreeSeqMap.scala
final def modifyOrRemove[S](f: (Int, T) => Option[S]): Ordering[S]

A combined transform and filter function.

A combined transform and filter function. Returns an Ordering such that for each (key, value) mapping in this map, if f(key, value) == None the map contains no mapping for key, and if f(key, value) == Some(x) the map contains (key, x).

Type parameters

S

The type of the values in the resulting LongMap.

Value parameters

f

The transforming function.

Attributes

Returns

The modified map.

Source
TreeSeqMap.scala
final def ordinal: Int

Attributes

Source
TreeSeqMap.scala
final def splitAt(n: Int): (Ordering[T], Ordering[T])

Attributes

Source
TreeSeqMap.scala
final def tail: Ordering[T]

Attributes

Source
TreeSeqMap.scala
final override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
Source
TreeSeqMap.scala