Skip to content

Instantly share code, notes, and snippets.

@luxflux
Last active September 1, 2015 18:57
Show Gist options
  • Save luxflux/41cc1804419534f53448 to your computer and use it in GitHub Desktop.
Save luxflux/41cc1804419534f53448 to your computer and use it in GitHub Desktop.
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"}}
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