Skip to content

Instantly share code, notes, and snippets.

@dissolved
Created September 13, 2013 03:00
Show Gist options
  • Save dissolved/6546370 to your computer and use it in GitHub Desktop.
Save dissolved/6546370 to your computer and use it in GitHub Desktop.
Object.tap inconsistancy
{:mutable => false}.tap {|h| h[:mutable] = true}
# => {:mutable=>true}
"Can I mutate?".tap {|str| str = "No!"}
# => "Can I mutate?"
@saturnflyer
Copy link

"Can I mutate?".tap {|str| str << " YES!"}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment