Interface MMapAccumulator<K,​V>

    • Method Detail

      • put

        void put​(K key,
                 V value)
        Adds the given key-value pair ot the map
        Parameters:
        key - the key to add
        value - the value to associate with the key
      • putAll

        void putAll​(Map<? extends K,​? extends V> other)
        Adds all entries of the given map overriding any current entries.
        Parameters:
        other - the map whose key-value pairs are to be added