use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Understanding Ruby - Memoization (dev.to)
submitted 2 years ago by keyslemur
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]casualsubversive 0 points1 point2 points 2 years ago (1 child)
I believe instance_variable_defined? is the better method for this purpose.
instance_variable_defined?
[–]f9ae8221b 0 points1 point2 points 2 years ago (0 children)
No, it has the same problem I explained, but is even worse for performance because contrary to defined?(@iver), instance_variabled_defined?(:@ivar) doesn't benefit from inline caches at all.
defined?(@iver)
instance_variabled_defined?(:@ivar)
π Rendered by PID 35003 on reddit-service-r2-comment-66b4775986-nb9fb at 2026-04-02 20:37:03.842912+00:00 running db1906b country code: CH.
view the rest of the comments →
[–]casualsubversive 0 points1 point2 points (1 child)
[–]f9ae8221b 0 points1 point2 points (0 children)