SkipListMap

dev.tauri.choam.skiplist.SkipListMap
final class SkipListMap[K, V]()(implicit K: Order[K])

Concurrent skip list map.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

final def del(key: K): Boolean
final def get(key: K): Option[V]
final def put(key: K, value: V): Option[V]

Attributes

Returns:

the old value (if any).

final def putIfAbsent(key: K, value: V): Option[V]

Attributes

Returns:

the existing value (if any).

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