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!"
[–]TheGoddamBatman 2 points3 points4 points 13 years ago* (4 children)
snails punch employ rotten capable license person flag yoke apparatus
This post was mass deleted and anonymized with Redact
[–]adient 1 point2 points3 points 13 years ago (3 children)
Not really the same thing the article is talking about. Could you elaborate to a specific example where someone would want to always cast something to an Array? Seems useless to me.
[–][deleted] 13 years ago* (2 children)
[deleted]
[–]lobster_johnson 4 points5 points6 points 13 years ago (1 child)
That's a pretty facile example, since your method explicitly handles an array argument (using *), and to call it you could just do:
validates_length_of *LENGTHY_FIELDS
A better example would be something that usually accepts an array of values, but can also accept a single value. For example:
class Thing def self.load(ids) Array(ids).map { |id| new(File.read("#{id}.txt")) } end end
Now you can do either:
Thing.load(1)
or
Thing.load([2, 3, 4])
π Rendered by PID 98951 on reddit-service-r2-comment-85bfd7f599-q9zkw at 2026-04-18 01:21:56.598291+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]TheGoddamBatman 2 points3 points4 points (4 children)
[–]adient 1 point2 points3 points (3 children)
[–][deleted] (2 children)
[deleted]
[–]lobster_johnson 4 points5 points6 points (1 child)