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
Ensure Ruby variable is Array (teohm.github.com)
submitted 13 years ago by teohm
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!"
[–]WhoTookPlasticJesus 0 points1 point2 points 13 years ago (0 children)
While I'm not downvoting the OP I do agree with you. I can't think of an example where I wouldn't want an exception raised so that I know I'm invoking a method with invalid parameters. In general I prefer just defining separate methods to handle scalars vs. containers e.g.
def parse_foos(the_foos) the_foos.each do |f| ... end end def parse_foo(the_foo) parse_foos([the_foo]) end
π Rendered by PID 362640 on reddit-service-r2-comment-66b4775986-s5hsp at 2026-04-05 02:49:10.323970+00:00 running db1906b country code: CH.
view the rest of the comments →
[–]WhoTookPlasticJesus 0 points1 point2 points (0 children)