Created
August 10, 2016 19:02
-
-
Save apeiros/ee2ee5ee40c2115cb8241dd04b713cae to your computer and use it in GitHub Desktop.
This file contains hidden or 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
this is afaik mostly for assignment methods. e.g. `a.foo ||= b` expanding to `a.foo = a.foo || b` | |
would invoke foo= regardless of whether it's necessary. `a.foo || a.foo = b` would not. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment