deepCopy
fun <T> Map<String, MutableList<T>>.deepCopy(): Map<String, MutableList<T>>
Content copied to clipboard
Perform a deep copy of this map, specifically duplicating the value lists so that they're insulated from changes.
Return
A new map instance with copied value lists.