Package

org.isarnproject.collections.mixmaps

ordered

Permalink

package ordered

Visibility
  1. Public
  2. All

Type Members

  1. trait OrderedLike[K, +IN <: INode[K], +M <: OrderedLike[K, IN, M]] extends Node[K]

    Permalink

    An inheritable (and mixable) trait representing Ordered container functionality that is backed by a Red/Black tree implemenation.

    An inheritable (and mixable) trait representing Ordered container functionality that is backed by a Red/Black tree implemenation.

    K

    The key type

    IN

    The internal node type of the underlying R/B tree subclass

    M

    The container self-type of the concrete map subclass

  2. sealed trait OrderedMap[K, +V] extends SortedMap[K, V] with OrderedMapLike[K, V, INodeMap[K, V], OrderedMap[K, V]]

    Permalink
  3. trait OrderedMapLike[K, +V, +IN <: INodeMap[K, V], +M <: OrderedMapLike[K, V, IN, M] with SortedMap[K, V]] extends NodeMap[K, V] with OrderedLike[K, IN, M] with SortedMapLike[K, V, M]

    Permalink

    An inheritable (and mixable) trait representing Ordered Map functionality that is backed by a Red/Black tree implemenation.

    An inheritable (and mixable) trait representing Ordered Map functionality that is backed by a Red/Black tree implemenation.

    K

    The key type

    V

    The value type

    IN

    The internal node type of the underlying R/B tree subclass

    M

    The map self-type of the concrete map subclass

  4. sealed trait OrderedSet[K] extends SortedSet[K] with OrderedSetLike[K, INode[K], OrderedSet[K]]

    Permalink
  5. trait OrderedSetLike[K, IN <: INode[K], M <: OrderedSetLike[K, IN, M] with SortedSet[K]] extends OrderedLike[K, IN, M] with SetLike[K, M] with SortedSetLike[K, M]

    Permalink

    An inheritable (and mixable) trait representing Ordered Set functionality that is backed by a Red/Black tree implemenation.

    An inheritable (and mixable) trait representing Ordered Set functionality that is backed by a Red/Black tree implemenation.

    K

    The key type

    IN

    The internal node type of the underlying R/B tree subclass

    M

    The map self-type of the concrete map subclass

Value Members

  1. object OrderedMap extends Serializable

    Permalink
  2. object OrderedSet extends Serializable

    Permalink
  3. package infra

    Permalink
  4. package tree

    Permalink

Ungrouped