Last active
September 1, 2015 18:57
-
-
Save luxflux/41cc1804419534f53448 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ASD = { nested: { a: nil } } | |
# => {:nested=>{:a=>nil}} | |
b = ASD.clone | |
# => {:nested=>{:a=>nil}} | |
b[:nested][:a] = 'asd' | |
# => "asd" | |
b | |
# => {:nested=>{:a=>"asd"}} | |
ASD | |
# => {:nested=>{:a=>"asd"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ASD = { nested: { a: nil } } | |
# => {:nested=>{:a=>nil}} | |
b = ASD.deep_dup | |
# => {:nested=>{:a=>nil}} | |
b[:nested][:a] = 'asd' | |
# => "asd" | |
b | |
# => {:nested=>{:a=>"asd"}} | |
ASD | |
# => {:nested=>{:a=>nil}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment