Package cern.colt.map


package cern.colt.map
  • Classes
    Class
    Description
    Abstract base class for hash maps holding (key,value) associations of type (double-->int).
    Abstract base class for hash maps holding (key,value) associations of type (int-->double).
    Abstract base class for hash maps holding (key,value) associations of type (int-->int).
    Abstract base class for hash maps holding (key,value) associations of type (int-->Object).
    Ajouté par Code Lutin pour le support de OpenLongDoubleHashMap Abstract base class for hash maps holding (key,value) associations of type (long-->double).
    Abstract base class for hash maps holding (key,value) associations of type (long-->Object).
    Abstract base class for hash maps holding objects or primitive data types such as int, float, etc. as keys and/or values.
    Provides various hash functions.
    Hash map holding (key,value) associations of type (double-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    Hash map holding (key,value) associations of type (int-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    Hash map holding (key,value) associations of type (int-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    Ajouté par Code Lutin le 8 décembre 2022 Hash map holding (key,value) associations of type (long-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    Hash map holding (key,value) associations of type (long-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
    Not of interest for users; only for implementors of hashtables.
    Status: Experimental; Do not use for production yet.