What is the right way to:
is_array("something") # => false (or 1)
is_array(["something", "else"]) # => true (or > 1)
or to get the count of items in it?
|
|
You probably want to use kind_of?().
|
|||||||||||||||
|
|
Are you sure it needs to be an array? You may be able to use respond_to?(method) so your code would work for similar things that aren't necessarily arrays (maybe some other enumberable thing). If you do actually need an array, then the post describing the Array#kind_of? method is best.
|
|||||||||||||||||
|
|
So you are saying if it is a single item it makes it a array with a single item in it? – brun Oct 12 '09 at 18:58 |
|
Yes, and if it already is an array it keeps it without adding a second array wrapper. – DigitalRoss Oct 12 '09 at 20:18 |
|
It sounds like you're after something that has some concept of items. I'd thus recommend seeing if it is For example,
note that, while Caution: a string is_a? Enumerable, so perhaps this isn't what you want... depends on your concept of an array like object. |
||||
|
|
|
Try:
EDIT: The other answer is much better than mine. |
|||
|
|