Given a data structure (e.g. a hash of hashes), what\'s the clean/recommended way to make a deep copy for immediate use? Assume reasonable cases, where the data\'s not parti
Clone is probably what you want for that. At least, that's what all the code I've seen uses.