method

to_a

v2_2_9 - Show latest stable - Class: Gem::List
to_a()
public

No documentation available.

# File lib/rubygems/util/list.rb, line 13
    def to_a
      ary = []
      n = self
      while n
        ary.unshift n.value
        n = n.tail
      end

      ary
    end