vote up 2 vote down star

What is the meaning, and where is the Ruby documentation for the syntax of:

Array(phrases)

which I found browsing the Rails source here:

# File actionpack/lib/action_view/helpers/text_helper.rb, line 109
...
119:           match = Array(phrases).map { |p| Regexp.escape(p) }.join('|')

I thought that Array.new would normally be used to create an array, so something different must be going on here. BTW from the context around this code, the phrases variable can be either a string or an array of strings.

flag

3 Answers

vote up 8 vote down check

It's most likely the Kernel#Array method, see here. It's slightly different than Array.new; it's more of a cast into an array. (It tries to_ary and to_a.)

link|flag
vote up 2 vote down

Array(x) appears to act exactly the same as x.to_a.

@Brian is right - it's a method of Kernel. Pickaxe says:

Array( arg ) -> anArray

Returns arg .to_a.

Array(1..5)  ยป [1, 2, 3, 4, 5]
link|flag
vote up 0 vote down

One way to test something like this in the future is to try the code yourself in irb. With code this simple, you can do something like the following:

irb(main):001:0> thing = Array 1..5
=> [1, 2, 3, 4, 5]
irb(main):002:0> thing.is_a? Array
=> true
irb(main):003:0>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.