com.koloboke.collect.map.hash
Interface HashFloatDoubleMap

All Superinterfaces:
Container, FloatDoubleMap, HashContainer, Map<Float,Double>

public interface HashFloatDoubleMap
extends FloatDoubleMap, HashContainer

An interface for FloatDoubleMaps, based on hash tables.

This interface doesn't carry own specific behaviour, just combines it's superinterfaces.

Looking for a way to instantiate a HashFloatDoubleMap? See static factory methods in HashFloatDoubleMaps class.

See Also:
HashFloatDoubleMapFactory, HashFloatDoubleMaps, @KolobokeMap

Nested Class Summary
 
Nested classes/interfaces inherited from interface Map
Map.Entry<K,V>
 
Method Summary
 HashObjSet<Map.Entry<Float,Double>> entrySet()
          Returns a Set view of the mappings contained in this map.
 HashFloatSet keySet()
          Returns a Set view of the keys contained in this map.
 
Methods inherited from interface com.koloboke.collect.map.FloatDoubleMap
addValue, addValue, compute, computeIfAbsent, computeIfPresent, containsKey, containsKey, containsValue, containsValue, cursor, defaultValue, forEach, forEachWhile, get, get, getOrDefault, getOrDefault, merge, put, put, putIfAbsent, putIfAbsent, remove, remove, remove, remove, removeIf, replace, replace, replace, replace, replaceAll, values
 
Methods inherited from interface Map
clear, equals, hashCode, isEmpty, putAll, size
 
Methods inherited from interface com.koloboke.collect.hash.HashContainer
currentLoad, ensureCapacity, hashConfig, shrink
 
Methods inherited from interface com.koloboke.collect.Container
clear, isEmpty, size, sizeAsLong
 

Method Detail

keySet

@Nonnull
HashFloatSet keySet()
Description copied from interface: java.util.Map
Returns a Set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. 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.

Specified by:
keySet in interface FloatDoubleMap
Specified by:
keySet in interface Map<Float,Double>
Returns:
a set view of the keys contained in this map

entrySet

@Nonnull
HashObjSet<Map.Entry<Float,Double>> entrySet()
Description copied from interface: java.util.Map
Returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined. 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.

Specified by:
entrySet in interface FloatDoubleMap
Specified by:
entrySet in interface Map<Float,Double>
Returns:
a set view of the mappings contained in this map