JTreeMap

scalation.database.JTreeMap
class JTreeMap[K, V](implicit evidence$1: ClassTag[K], evidence$2: ClassTag[V], val ord: Ordering[K]) extends Serializable

The TreeMMap class provides tree maps that use the Red-Black Tree algorithm. It uses on Java's TreeMap and can be used for building Unique Indices.

Type parameters

K

the type of the keys contained in this tree map

V

the base-type of the values assigned to keys in this tree map

Value parameters

ord

the implicit ordering used to compare objects of type K

Attributes

See also

java.util.TreeMap

Graph
Supertypes
trait Serializable
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def -=(key: K): tree.type

Remove the entry from this map having the given key.

Remove the entry from this map having the given key.

Value parameters

the

key of the entry to be removed

Attributes

def show(): Unit

Show/print this TreeMap.

Show/print this TreeMap.

Attributes

Concrete fields

val count: Int
protected val tree: TreeMap[K, V]

Implicits

Implicits

implicit val ord: Ordering[K]