cloneMapTyped<K, V> abstract method

Map<K, V> cloneMapTyped<K, V>(
  1. Map<K, V> source
)

Clones a map with typed values, producing a new map with keys and cloned values.

Both keys and values are cloned according to the cloner's rules. The resulting map preserves the type parameters K and V.

Implementation

Map<K, V> cloneMapTyped<K, V>(Map<K, V> source);