to_a(*args) -> [object]
[permalink][rdoc][edit]entries(*args) -> [object]
-
全ての要素を含む配列を返します。
- [PARAM] args:
- each の呼び出し時に引数として渡されます。
(1..7).to_a #=> [1, 2, 3, 4, 5, 6, 7] { 'a'=>1, 'b'=>2, 'c'=>3 }.to_a #=> [["a", 1], ["b", 2], ["c", 3]] require 'prime' Prime.entries 10 #=> [2, 3, 5, 7]