Liking cljdoc? Tell your friends :D

jdk.util.concurrent.ConcurrentSkipListMap

A scalable concurrent ConcurrentNavigableMap implementation. The map is sorted according to the java.lang.natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used.

This class implements a concurrent variant of SkipLists providing expected average log(n) time cost for the containsKey, get, put and remove operations and their variants. Insertion, removal, update, and access operations safely execute concurrently by multiple threads.

Iterators and spliterators are weakly consistent.

Ascending key ordered views and their iterators are faster than descending ones.

All Map.Entry pairs returned by methods in this class and its views represent snapshots of mappings at the time they were produced. They do not support the Entry.setValue method. (Note however that it is possible to change mappings in the associated map using put, putIfAbsent, or replace, depending on exactly which effect you need.)

Beware that, unlike in most collections, the size method is not a constant-time operation. Because of the asynchronous nature of these maps, determining the current number of elements requires a traversal of the elements, and so may report inaccurate results if this collection is modified during traversal. Additionally, the bulk operations putAll, equals, toArray, containsValue, and clear are not guaranteed to be performed atomically. For example, an iterator operating concurrently with a putAll operation might view only some of the added elements.

This class and its views and iterators implement all of the optional methods of the Map and Iterator interfaces. Like most other concurrent collections, this class does not permit the use of null keys or values because some null return values cannot be reliably distinguished from the absence of elements.

This class is a member of the

Java Collections Framework.

A scalable concurrent ConcurrentNavigableMap implementation.
The map is sorted according to the java.lang.natural
ordering of its keys, or by a Comparator provided at map
creation time, depending on which constructor is used.

This class implements a concurrent variant of SkipLists
providing expected average log(n) time cost for the
containsKey, get, put and
remove operations and their variants.  Insertion, removal,
update, and access operations safely execute concurrently by
multiple threads.

Iterators and spliterators are
weakly consistent.

Ascending key ordered views and their iterators are faster than
descending ones.

All Map.Entry pairs returned by methods in this class
and its views represent snapshots of mappings at the time they were
produced. They do not support the Entry.setValue
method. (Note however that it is possible to change mappings in the
associated map using put, putIfAbsent, or
replace, depending on exactly which effect you need.)

Beware that, unlike in most collections, the size
method is not a constant-time operation. Because of the
asynchronous nature of these maps, determining the current number
of elements requires a traversal of the elements, and so may report
inaccurate results if this collection is modified during traversal.
Additionally, the bulk operations putAll, equals,
toArray, containsValue, and clear are
not guaranteed to be performed atomically. For example, an
iterator operating concurrently with a putAll operation
might view only some of the added elements.

This class and its views and iterators implement all of the
optional methods of the Map and Iterator
interfaces. Like most other concurrent collections, this class does
not permit the use of null keys or values because some
null return values cannot be reliably distinguished from the absence of
elements.

This class is a member of the

Java Collections Framework.
raw docstring

->concurrent-skip-list-mapclj

(->concurrent-skip-list-map)
(->concurrent-skip-list-map comparator)

Constructor.

Constructs a new, empty map, sorted according to the specified comparator.

comparator - the comparator that will be used to order this map. If null, the java.lang.natural ordering of the keys will be used. - java.util.Comparator

Constructor.

Constructs a new, empty map, sorted according to the specified
 comparator.

comparator - the comparator that will be used to order this map. If null, the java.lang.natural ordering of the keys will be used. - `java.util.Comparator`
raw docstring

ceiling-entryclj

(ceiling-entry this key)

Returns a key-value mapping associated with the least key greater than or equal to the given key, or null if there is no such entry. The returned entry does not support the Entry.setValue method.

key - the key - K

returns: an entry with the least key greater than or equal to key, or null if there is no such key - java.util.Map$Entry<K,V>

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Returns a key-value mapping associated with the least key
 greater than or equal to the given key, or null if
 there is no such entry. The returned entry does not
 support the Entry.setValue method.

key - the key - `K`

returns: an entry with the least key greater than or equal to
         key, or null if there is no such key - `java.util.Map$Entry<K,V>`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

ceiling-keyclj

(ceiling-key this key)

Description copied from interface: NavigableMap

key - the key - K

returns: the least key greater than or equal to key, or null if there is no such key - K

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Description copied from interface: NavigableMap

key - the key - `K`

returns: the least key greater than or equal to key,
         or null if there is no such key - `K`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

clearclj

(clear this)

Removes all of the mappings from this map.

Removes all of the mappings from this map.
raw docstring

cloneclj

(clone this)

Returns a shallow copy of this ConcurrentSkipListMap instance. (The keys and values themselves are not cloned.)

returns: a shallow copy of this map - java.util.concurrent.ConcurrentSkipListMap<K,V>

Returns a shallow copy of this ConcurrentSkipListMap
 instance. (The keys and values themselves are not cloned.)

returns: a shallow copy of this map - `java.util.concurrent.ConcurrentSkipListMap<K,V>`
raw docstring

comparatorclj

(comparator this)

Description copied from interface: SortedMap

returns: the comparator used to order the keys in this map, or null if this map uses the natural ordering of its keys - java.util.Comparator<? super K>

Description copied from interface: SortedMap

returns: the comparator used to order the keys in this map,
         or null if this map uses the natural ordering
         of its keys - `java.util.Comparator<? super K>`
raw docstring

computeclj

(compute this key remapping-function)

Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping). The function is NOT guaranteed to be applied once atomically.

key - key with which the specified value is to be associated - K remapping-function - the function to compute a value - java.util.function.BiFunction

returns: the new value associated with the specified key, or null if none - V

throws: java.lang.NullPointerException - if the specified key is null or the remappingFunction is null

Attempts to compute a mapping for the specified key and its
 current mapped value (or null if there is no current
 mapping). The function is NOT guaranteed to be applied
 once atomically.

key - key with which the specified value is to be associated - `K`
remapping-function - the function to compute a value - `java.util.function.BiFunction`

returns: the new value associated with the specified key, or null if none - `V`

throws: java.lang.NullPointerException - if the specified key is null or the remappingFunction is null
raw docstring

compute-if-absentclj

(compute-if-absent this key mapping-function)

If the specified key is not already associated with a value, attempts to compute its value using the given mapping function and enters it into this map unless null. The function is NOT guaranteed to be applied once atomically only if the value is not present.

key - key with which the specified value is to be associated - K mapping-function - the function to compute a value - java.util.function.Function

returns: the current (existing or computed) value associated with the specified key, or null if the computed value is null - V

throws: java.lang.NullPointerException - if the specified key is null or the mappingFunction is null

If the specified key is not already associated with a value,
 attempts to compute its value using the given mapping function
 and enters it into this map unless null.  The function
 is NOT guaranteed to be applied once atomically only
 if the value is not present.

key - key with which the specified value is to be associated - `K`
mapping-function - the function to compute a value - `java.util.function.Function`

returns: the current (existing or computed) value associated with
         the specified key, or null if the computed value is null - `V`

throws: java.lang.NullPointerException - if the specified key is null or the mappingFunction is null
raw docstring

compute-if-presentclj

(compute-if-present this key remapping-function)

If the value for the specified key is present, attempts to compute a new mapping given the key and its current mapped value. The function is NOT guaranteed to be applied once atomically.

key - key with which a value may be associated - K remapping-function - the function to compute a value - java.util.function.BiFunction

returns: the new value associated with the specified key, or null if none - V

throws: java.lang.NullPointerException - if the specified key is null or the remappingFunction is null

If the value for the specified key is present, attempts to
 compute a new mapping given the key and its current mapped
 value. The function is NOT guaranteed to be applied
 once atomically.

key - key with which a value may be associated - `K`
remapping-function - the function to compute a value - `java.util.function.BiFunction`

returns: the new value associated with the specified key, or null if none - `V`

throws: java.lang.NullPointerException - if the specified key is null or the remappingFunction is null
raw docstring

contains-keyclj

(contains-key this key)

Returns true if this map contains a mapping for the specified key.

key - key whose presence in this map is to be tested - java.lang.Object

returns: true if this map contains a mapping for the specified key - boolean

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Returns true if this map contains a mapping for the specified
 key.

key - key whose presence in this map is to be tested - `java.lang.Object`

returns: true if this map contains a mapping for the specified key - `boolean`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

contains-valueclj

(contains-value this value)

Returns true if this map maps one or more keys to the specified value. This operation requires time linear in the map size. Additionally, it is possible for the map to change during execution of this method, in which case the returned result may be inaccurate.

value - value whose presence in this map is to be tested - java.lang.Object

returns: true if a mapping to value exists; false otherwise - boolean

throws: java.lang.NullPointerException - if the specified value is null

Returns true if this map maps one or more keys to the
 specified value.  This operation requires time linear in the
 map size. Additionally, it is possible for the map to change
 during execution of this method, in which case the returned
 result may be inaccurate.

value - value whose presence in this map is to be tested - `java.lang.Object`

returns: true if a mapping to value exists;
         false otherwise - `boolean`

throws: java.lang.NullPointerException - if the specified value is null
raw docstring

descending-key-setclj

(descending-key-set this)

Description copied from interface: ConcurrentNavigableMap

returns: a reverse order navigable set view of the keys in this map - java.util.NavigableSet<K>

Description copied from interface: ConcurrentNavigableMap

returns: a reverse order navigable set view of the keys in this map - `java.util.NavigableSet<K>`
raw docstring

descending-mapclj

(descending-map this)

Description copied from interface: ConcurrentNavigableMap

returns: a reverse order view of this map - java.util.concurrent.ConcurrentNavigableMap<K,V>

Description copied from interface: ConcurrentNavigableMap

returns: a reverse order view of this map - `java.util.concurrent.ConcurrentNavigableMap<K,V>`
raw docstring

empty?clj

(empty? this)

Returns true if this map contains no key-value mappings.

returns: true if this map contains no key-value mappings - boolean

Returns true if this map contains no key-value mappings.

returns: true if this map contains no key-value mappings - `boolean`
raw docstring

entry-setclj

(entry-set this)

Returns a Set view of the mappings contained in this map.

The set's iterator returns the entries in ascending key order. The set's spliterator additionally reports Spliterator.CONCURRENT, Spliterator.NONNULL, Spliterator.SORTED and Spliterator.ORDERED, with an encounter order that is ascending key order.

The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

The view's iterators and spliterators are weakly consistent.

The Map.Entry elements traversed by the iterator or spliterator do not support the setValue operation.

returns: a set view of the mappings contained in this map, sorted in ascending key order - java.util.Set<java.util.Map$Entry<K,V>>

Returns a Set view of the mappings contained in this map.

 The set's iterator returns the entries in ascending key order.  The
 set's spliterator additionally reports Spliterator.CONCURRENT,
 Spliterator.NONNULL, Spliterator.SORTED and
 Spliterator.ORDERED, with an encounter order that is ascending
 key order.

 The set is backed by the map, so changes to the map are
 reflected in the set, and vice-versa.  The set supports element
 removal, which removes the corresponding mapping from the map,
 via the Iterator.remove, Set.remove,
 removeAll, retainAll and clear
 operations.  It does not support the add or
 addAll operations.

 The view's iterators and spliterators are
 weakly consistent.

 The Map.Entry elements traversed by the iterator
 or spliterator do not support the setValue
 operation.

returns: a set view of the mappings contained in this map,
         sorted in ascending key order - `java.util.Set<java.util.Map$Entry<K,V>>`
raw docstring

equalsclj

(equals this o)

Compares the specified object with this map for equality. Returns true if the given object is also a map and the two maps represent the same mappings. More formally, two maps m1 and m2 represent the same mappings if m1.entrySet().equals(m2.entrySet()). This operation may return misleading results if either map is concurrently modified during execution of this method.

o - object to be compared for equality with this map - java.lang.Object

returns: true if the specified object is equal to this map - boolean

Compares the specified object with this map for equality.
 Returns true if the given object is also a map and the
 two maps represent the same mappings.  More formally, two maps
 m1 and m2 represent the same mappings if
 m1.entrySet().equals(m2.entrySet()).  This
 operation may return misleading results if either map is
 concurrently modified during execution of this method.

o - object to be compared for equality with this map - `java.lang.Object`

returns: true if the specified object is equal to this map - `boolean`
raw docstring

first-entryclj

(first-entry this)

Returns a key-value mapping associated with the least key in this map, or null if the map is empty. The returned entry does not support the Entry.setValue method.

returns: an entry with the least key, or null if this map is empty - java.util.Map$Entry<K,V>

Returns a key-value mapping associated with the least
 key in this map, or null if the map is empty.
 The returned entry does not support
 the Entry.setValue method.

returns: an entry with the least key,
         or null if this map is empty - `java.util.Map$Entry<K,V>`
raw docstring

first-keyclj

(first-key this)

Description copied from interface: SortedMap

returns: the first (lowest) key currently in this map - K

throws: java.util.NoSuchElementException - if this map is empty

Description copied from interface: SortedMap

returns: the first (lowest) key currently in this map - `K`

throws: java.util.NoSuchElementException - if this map is empty
raw docstring

floor-entryclj

(floor-entry this key)

Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key. The returned entry does not support the Entry.setValue method.

key - the key - K

returns: an entry with the greatest key less than or equal to key, or null if there is no such key - java.util.Map$Entry<K,V>

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Returns a key-value mapping associated with the greatest key
 less than or equal to the given key, or null if there
 is no such key. The returned entry does not support
 the Entry.setValue method.

key - the key - `K`

returns: an entry with the greatest key less than or equal to
         key, or null if there is no such key - `java.util.Map$Entry<K,V>`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

floor-keyclj

(floor-key this key)

Description copied from interface: NavigableMap

key - the key - K

returns: the greatest key less than or equal to key, or null if there is no such key - K

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Description copied from interface: NavigableMap

key - the key - `K`

returns: the greatest key less than or equal to key,
         or null if there is no such key - `K`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

for-eachclj

(for-each this action)

Description copied from interface: ConcurrentMap

action - The action to be performed for each entry - java.util.function.BiConsumer

Description copied from interface: ConcurrentMap

action - The action to be performed for each entry - `java.util.function.BiConsumer`
raw docstring

getclj

(get this key)

Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

More formally, if this map contains a mapping from a key k to a value v such that key compares equal to k according to the map's ordering, then this method returns v; otherwise it returns null. (There can be at most one such mapping.)

key - the key whose associated value is to be returned - java.lang.Object

returns: the value to which the specified key is mapped, or null if this map contains no mapping for the key - V

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Returns the value to which the specified key is mapped,
 or null if this map contains no mapping for the key.

 More formally, if this map contains a mapping from a key
 k to a value v such that key compares
 equal to k according to the map's ordering, then this
 method returns v; otherwise it returns null.
 (There can be at most one such mapping.)

key - the key whose associated value is to be returned - `java.lang.Object`

returns: the value to which the specified key is mapped, or
         null if this map contains no mapping for the key - `V`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

get-or-defaultclj

(get-or-default this key default-value)

Returns the value to which the specified key is mapped, or the given defaultValue if this map contains no mapping for the key.

key - the key - java.lang.Object default-value - the value to return if this map contains no mapping for the given key - V

returns: the mapping for the key, if present; else the defaultValue - V

throws: java.lang.NullPointerException - if the specified key is null

Returns the value to which the specified key is mapped,
 or the given defaultValue if this map contains no mapping for the key.

key - the key - `java.lang.Object`
default-value - the value to return if this map contains no mapping for the given key - `V`

returns: the mapping for the key, if present; else the defaultValue - `V`

throws: java.lang.NullPointerException - if the specified key is null
raw docstring

head-mapclj

(head-map this to-key)
(head-map this to-key inclusive)

Description copied from interface: NavigableMap

to-key - high endpoint of the keys in the returned map - K inclusive - true if the high endpoint is to be included in the returned view - boolean

returns: a view of the portion of this map whose keys are less than (or equal to, if inclusive is true) toKey - java.util.concurrent.ConcurrentNavigableMap<K,V>

throws: java.lang.ClassCastException - if toKey is not compatible with this map's comparator (or, if the map has no comparator, if toKey does not implement Comparable). Implementations may, but are not required to, throw this exception if toKey cannot be compared to keys currently in the map.

Description copied from interface: NavigableMap

to-key - high endpoint of the keys in the returned map - `K`
inclusive - true if the high endpoint is to be included in the returned view - `boolean`

returns: a view of the portion of this map whose keys are less than
         (or equal to, if inclusive is true) toKey - `java.util.concurrent.ConcurrentNavigableMap<K,V>`

throws: java.lang.ClassCastException - if toKey is not compatible with this map's comparator (or, if the map has no comparator, if toKey does not implement Comparable). Implementations may, but are not required to, throw this exception if toKey cannot be compared to keys currently in the map.
raw docstring

higher-entryclj

(higher-entry this key)

Returns a key-value mapping associated with the least key strictly greater than the given key, or null if there is no such key. The returned entry does not support the Entry.setValue method.

key - the key - K

returns: an entry with the least key greater than key, or null if there is no such key - java.util.Map$Entry<K,V>

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Returns a key-value mapping associated with the least key
 strictly greater than the given key, or null if there
 is no such key. The returned entry does not support
 the Entry.setValue method.

key - the key - `K`

returns: an entry with the least key greater than key,
         or null if there is no such key - `java.util.Map$Entry<K,V>`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

higher-keyclj

(higher-key this key)

Description copied from interface: NavigableMap

key - the key - K

returns: the least key greater than key, or null if there is no such key - K

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Description copied from interface: NavigableMap

key - the key - `K`

returns: the least key greater than key,
         or null if there is no such key - `K`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

key-setclj

(key-set this)

Returns a NavigableSet view of the keys contained in this map.

The set's iterator returns the keys in ascending order. The set's spliterator additionally reports Spliterator.CONCURRENT, Spliterator.NONNULL, Spliterator.SORTED and Spliterator.ORDERED, with an encounter order that is ascending key order. The spliterator's comparator (see Spliterator.getComparator()) is null if the map's comparator (see comparator()) is null. Otherwise, the spliterator's comparator is the same as or imposes the same total ordering as the map's comparator.

The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations.

The view's iterators and spliterators are weakly consistent.

This method is equivalent to method navigableKeySet.

returns: a navigable set view of the keys in this map - java.util.NavigableSet<K>

Returns a NavigableSet view of the keys contained in this map.

 The set's iterator returns the keys in ascending order.
 The set's spliterator additionally reports Spliterator.CONCURRENT,
 Spliterator.NONNULL, Spliterator.SORTED and
 Spliterator.ORDERED, with an encounter order that is ascending
 key order.  The spliterator's comparator (see
 Spliterator.getComparator()) is null if
 the map's comparator (see comparator()) is null.
 Otherwise, the spliterator's comparator is the same as or imposes the
 same total ordering as the map's comparator.

 The set is backed by the map, so changes to the map are
 reflected in the set, and vice-versa.  The set supports element
 removal, which removes the corresponding mapping from the map,
 via the Iterator.remove, Set.remove,
 removeAll, retainAll, and clear
 operations.  It does not support the add or addAll
 operations.

 The view's iterators and spliterators are
 weakly consistent.

 This method is equivalent to method navigableKeySet.

returns: a navigable set view of the keys in this map - `java.util.NavigableSet<K>`
raw docstring

last-entryclj

(last-entry this)

Returns a key-value mapping associated with the greatest key in this map, or null if the map is empty. The returned entry does not support the Entry.setValue method.

returns: an entry with the greatest key, or null if this map is empty - java.util.Map$Entry<K,V>

Returns a key-value mapping associated with the greatest
 key in this map, or null if the map is empty.
 The returned entry does not support
 the Entry.setValue method.

returns: an entry with the greatest key,
         or null if this map is empty - `java.util.Map$Entry<K,V>`
raw docstring

last-keyclj

(last-key this)

Description copied from interface: SortedMap

returns: the last (highest) key currently in this map - K

throws: java.util.NoSuchElementException - if this map is empty

Description copied from interface: SortedMap

returns: the last (highest) key currently in this map - `K`

throws: java.util.NoSuchElementException - if this map is empty
raw docstring

lower-entryclj

(lower-entry this key)

Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key. The returned entry does not support the Entry.setValue method.

key - the key - K

returns: an entry with the greatest key less than key, or null if there is no such key - java.util.Map$Entry<K,V>

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Returns a key-value mapping associated with the greatest key
 strictly less than the given key, or null if there is
 no such key. The returned entry does not support the
 Entry.setValue method.

key - the key - `K`

returns: an entry with the greatest key less than key,
         or null if there is no such key - `java.util.Map$Entry<K,V>`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

lower-keyclj

(lower-key this key)

Description copied from interface: NavigableMap

key - the key - K

returns: the greatest key less than key, or null if there is no such key - K

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Description copied from interface: NavigableMap

key - the key - `K`

returns: the greatest key less than key,
         or null if there is no such key - `K`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

mergeclj

(merge this key value remapping-function)

If the specified key is not already associated with a value, associates it with the given value. Otherwise, replaces the value with the results of the given remapping function, or removes if null. The function is NOT guaranteed to be applied once atomically.

key - key with which the specified value is to be associated - K value - the value to use if absent - V remapping-function - the function to recompute a value if present - java.util.function.BiFunction

returns: the new value associated with the specified key, or null if none - V

throws: java.lang.NullPointerException - if the specified key or value is null or the remappingFunction is null

If the specified key is not already associated with a value,
 associates it with the given value.  Otherwise, replaces the
 value with the results of the given remapping function, or
 removes if null. The function is NOT
 guaranteed to be applied once atomically.

key - key with which the specified value is to be associated - `K`
value - the value to use if absent - `V`
remapping-function - the function to recompute a value if present - `java.util.function.BiFunction`

returns: the new value associated with the specified key, or null if none - `V`

throws: java.lang.NullPointerException - if the specified key or value is null or the remappingFunction is null
raw docstring

(navigable-key-set this)

Description copied from interface: ConcurrentNavigableMap

returns: a navigable set view of the keys in this map - java.util.NavigableSet<K>

Description copied from interface: ConcurrentNavigableMap

returns: a navigable set view of the keys in this map - `java.util.NavigableSet<K>`
raw docstring

poll-first-entryclj

(poll-first-entry this)

Removes and returns a key-value mapping associated with the least key in this map, or null if the map is empty. The returned entry does not support the Entry.setValue method.

returns: the removed first entry of this map, or null if this map is empty - java.util.Map$Entry<K,V>

Removes and returns a key-value mapping associated with
 the least key in this map, or null if the map is empty.
 The returned entry does not support
 the Entry.setValue method.

returns: the removed first entry of this map,
         or null if this map is empty - `java.util.Map$Entry<K,V>`
raw docstring

poll-last-entryclj

(poll-last-entry this)

Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty. The returned entry does not support the Entry.setValue method.

returns: the removed last entry of this map, or null if this map is empty - java.util.Map$Entry<K,V>

Removes and returns a key-value mapping associated with
 the greatest key in this map, or null if the map is empty.
 The returned entry does not support
 the Entry.setValue method.

returns: the removed last entry of this map,
         or null if this map is empty - `java.util.Map$Entry<K,V>`
raw docstring

putclj

(put this key value)

Associates the specified value with the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced.

key - key with which the specified value is to be associated - K value - value to be associated with the specified key - V

returns: the previous value associated with the specified key, or null if there was no mapping for the key - V

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Associates the specified value with the specified key in this map.
 If the map previously contained a mapping for the key, the old
 value is replaced.

key - key with which the specified value is to be associated - `K`
value - value to be associated with the specified key - `V`

returns: the previous value associated with the specified key, or
         null if there was no mapping for the key - `V`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

put-if-absentclj

(put-if-absent this key value)

If the specified key is not already associated with a value, associate it with the given value. This is equivalent to

if (!map.containsKey(key)) return map.put(key, value); else return map.get(key);

except that the action is performed atomically.

key - key with which the specified value is to be associated - K value - value to be associated with the specified key - V

returns: the previous value associated with the specified key, or null if there was no mapping for the key - V

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

If the specified key is not already associated
 with a value, associate it with the given value.
 This is equivalent to


 if (!map.containsKey(key))
   return map.put(key, value);
 else
   return map.get(key);

 except that the action is performed atomically.

key - key with which the specified value is to be associated - `K`
value - value to be associated with the specified key - `V`

returns: the previous value associated with the specified key,
         or null if there was no mapping for the key - `V`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

removeclj

(remove this key)
(remove this key value)

Removes the entry for a key only if currently mapped to a given value. This is equivalent to

if (map.containsKey(key) && Objects.equals(map.get(key), value)) { map.remove(key); return true; } else return false;

except that the action is performed atomically.

key - key with which the specified value is associated - java.lang.Object value - value expected to be associated with the specified key - java.lang.Object

returns: true if the value was removed - boolean

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Removes the entry for a key only if currently mapped to a given value.
 This is equivalent to


 if (map.containsKey(key) && Objects.equals(map.get(key), value)) {
   map.remove(key);
   return true;
 } else
   return false;

 except that the action is performed atomically.

key - key with which the specified value is associated - `java.lang.Object`
value - value expected to be associated with the specified key - `java.lang.Object`

returns: true if the value was removed - `boolean`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

replaceclj

(replace this key value)
(replace this key old-value new-value)

Replaces the entry for a key only if currently mapped to a given value. This is equivalent to

if (map.containsKey(key) && Objects.equals(map.get(key), oldValue)) { map.put(key, newValue); return true; } else return false;

except that the action is performed atomically.

key - key with which the specified value is associated - K old-value - value expected to be associated with the specified key - V new-value - value to be associated with the specified key - V

returns: true if the value was replaced - boolean

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map

Replaces the entry for a key only if currently mapped to a given value.
 This is equivalent to


 if (map.containsKey(key) && Objects.equals(map.get(key), oldValue)) {
   map.put(key, newValue);
   return true;
 } else
   return false;

 except that the action is performed atomically.

key - key with which the specified value is associated - `K`
old-value - value expected to be associated with the specified key - `V`
new-value - value to be associated with the specified key - `V`

returns: true if the value was replaced - `boolean`

throws: java.lang.ClassCastException - if the specified key cannot be compared with the keys currently in the map
raw docstring

replace-allclj

(replace-all this function)

Description copied from interface: ConcurrentMap

function - the function to apply to each entry - java.util.function.BiFunction

Description copied from interface: ConcurrentMap

function - the function to apply to each entry - `java.util.function.BiFunction`
raw docstring

sizeclj

(size this)

Returns the number of key-value mappings in this map. If this map contains more than Integer.MAX_VALUE elements, it returns Integer.MAX_VALUE.

Beware that, unlike in most collections, this method is NOT a constant-time operation. Because of the asynchronous nature of these maps, determining the current number of elements requires traversing them all to count them. Additionally, it is possible for the size to change during execution of this method, in which case the returned result will be inaccurate. Thus, this method is typically not very useful in concurrent applications.

returns: the number of elements in this map - int

Returns the number of key-value mappings in this map.  If this map
 contains more than Integer.MAX_VALUE elements, it
 returns Integer.MAX_VALUE.

 Beware that, unlike in most collections, this method is
 NOT a constant-time operation. Because of the
 asynchronous nature of these maps, determining the current
 number of elements requires traversing them all to count them.
 Additionally, it is possible for the size to change during
 execution of this method, in which case the returned result
 will be inaccurate. Thus, this method is typically not very
 useful in concurrent applications.

returns: the number of elements in this map - `int`
raw docstring

sub-mapclj

(sub-map this from-key to-key)
(sub-map this from-key from-inclusive to-key to-inclusive)

Description copied from interface: NavigableMap

from-key - low endpoint of the keys in the returned map - K from-inclusive - true if the low endpoint is to be included in the returned view - boolean to-key - high endpoint of the keys in the returned map - K to-inclusive - true if the high endpoint is to be included in the returned view - boolean

returns: a view of the portion of this map whose keys range from fromKey to toKey - java.util.concurrent.ConcurrentNavigableMap<K,V>

throws: java.lang.ClassCastException - if fromKey and toKey cannot be compared to one another using this map's comparator (or, if the map has no comparator, using natural ordering). Implementations may, but are not required to, throw this exception if fromKey or toKey cannot be compared to keys currently in the map.

Description copied from interface: NavigableMap

from-key - low endpoint of the keys in the returned map - `K`
from-inclusive - true if the low endpoint is to be included in the returned view - `boolean`
to-key - high endpoint of the keys in the returned map - `K`
to-inclusive - true if the high endpoint is to be included in the returned view - `boolean`

returns: a view of the portion of this map whose keys range from
         fromKey to toKey - `java.util.concurrent.ConcurrentNavigableMap<K,V>`

throws: java.lang.ClassCastException - if fromKey and toKey cannot be compared to one another using this map's comparator (or, if the map has no comparator, using natural ordering). Implementations may, but are not required to, throw this exception if fromKey or toKey cannot be compared to keys currently in the map.
raw docstring

tail-mapclj

(tail-map this from-key)
(tail-map this from-key inclusive)

Description copied from interface: NavigableMap

from-key - low endpoint of the keys in the returned map - K inclusive - true if the low endpoint is to be included in the returned view - boolean

returns: a view of the portion of this map whose keys are greater than (or equal to, if inclusive is true) fromKey - java.util.concurrent.ConcurrentNavigableMap<K,V>

throws: java.lang.ClassCastException - if fromKey is not compatible with this map's comparator (or, if the map has no comparator, if fromKey does not implement Comparable). Implementations may, but are not required to, throw this exception if fromKey cannot be compared to keys currently in the map.

Description copied from interface: NavigableMap

from-key - low endpoint of the keys in the returned map - `K`
inclusive - true if the low endpoint is to be included in the returned view - `boolean`

returns: a view of the portion of this map whose keys are greater than
         (or equal to, if inclusive is true) fromKey - `java.util.concurrent.ConcurrentNavigableMap<K,V>`

throws: java.lang.ClassCastException - if fromKey is not compatible with this map's comparator (or, if the map has no comparator, if fromKey does not implement Comparable). Implementations may, but are not required to, throw this exception if fromKey cannot be compared to keys currently in the map.
raw docstring

valuesclj

(values this)

Returns a Collection view of the values contained in this map. The collection's iterator returns the values in ascending order of the corresponding keys. The collections's spliterator additionally reports Spliterator.CONCURRENT, Spliterator.NONNULL and Spliterator.ORDERED, with an encounter order that is ascending order of the corresponding keys.

The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. The collection supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Collection.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

The view's iterators and spliterators are weakly consistent.

returns: a collection view of the values contained in this map - java.util.Collection<V>

Returns a Collection view of the values contained in this map.
 The collection's iterator returns the values in ascending order
 of the corresponding keys. The collections's spliterator additionally
 reports Spliterator.CONCURRENT, Spliterator.NONNULL and
 Spliterator.ORDERED, with an encounter order that is ascending
 order of the corresponding keys.

 The collection is backed by the map, so changes to the map are
 reflected in the collection, and vice-versa.  The collection
 supports element removal, which removes the corresponding
 mapping from the map, via the Iterator.remove,
 Collection.remove, removeAll,
 retainAll and clear operations.  It does not
 support the add or addAll operations.

 The view's iterators and spliterators are
 weakly consistent.

returns: a collection view of the values contained in this map - `java.util.Collection<V>`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close