Flowdock
method

to_a

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: List
to_a() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.