aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash/deep_dup.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-15 10:00:09 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-15 10:00:09 -0500
commitb2f73c40b8a995ed685fc76f2df724b15ead16b6 (patch)
tree3893c441594d0d59a5ee4046f6b8c69d09bf8a9d /activesupport/lib/active_support/core_ext/hash/deep_dup.rb
parente9051e20aeb2c666db06b6217954737665878db7 (diff)
downloadrails-b2f73c40b8a995ed685fc76f2df724b15ead16b6.tar.gz
rails-b2f73c40b8a995ed685fc76f2df724b15ead16b6.tar.bz2
rails-b2f73c40b8a995ed685fc76f2df724b15ead16b6.zip
Backporting some docs on core_ext/hash
Diffstat (limited to 'activesupport/lib/active_support/core_ext/hash/deep_dup.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/hash/deep_dup.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/deep_dup.rb b/activesupport/lib/active_support/core_ext/hash/deep_dup.rb
index 447142605c..c668678ce2 100644
--- a/activesupport/lib/active_support/core_ext/hash/deep_dup.rb
+++ b/activesupport/lib/active_support/core_ext/hash/deep_dup.rb
@@ -1,5 +1,12 @@
class Hash
# Returns a deep copy of hash.
+ #
+ # hash = { :a => { :b => 'b' } }
+ # dup = hash.deep_dup
+ # dup[:a][:c] = 'c'
+ #
+ # hash[:a][:c] #=> nil
+ # dup[:a][:c] #=> "c"
def deep_dup
duplicate = self.dup
duplicate.each_pair do |k,v|