Class Int2DoubleArrayMap

    • Constructor Detail

      • Int2DoubleArrayMap

        public Int2DoubleArrayMap​(int[] key,
                                  double[] value)
        Creates a new empty array map with given key and value backing arrays. The resulting map will have as many entries as the given arrays.

        It is responsibility of the caller that the elements of key are distinct.

        Parameters:
        key - the key array.
        value - the value array (it must have the same length as key).
      • Int2DoubleArrayMap

        public Int2DoubleArrayMap()
        Creates a new empty array map.
      • Int2DoubleArrayMap

        public Int2DoubleArrayMap​(int capacity)
        Creates a new empty array map of given capacity.
        Parameters:
        capacity - the initial capacity.
      • Int2DoubleArrayMap

        public Int2DoubleArrayMap​(Int2DoubleMap m)
        Creates a new empty array map copying the entries of a given map.
        Parameters:
        m - a map.
      • Int2DoubleArrayMap

        public Int2DoubleArrayMap​(Map<? extends Integer,​? extends Double> m)
        Creates a new empty array map copying the entries of a given map.
        Parameters:
        m - a map.
      • Int2DoubleArrayMap

        public Int2DoubleArrayMap​(int[] key,
                                  double[] value,
                                  int size)
        Creates a new array map with given key and value backing arrays, using the given number of elements.

        It is responsibility of the caller that the first size elements of key are distinct.

        Parameters:
        key - the key array.
        value - the value array (it must have the same length as key).
        size - the number of valid elements in key and value.