Object
# File rubygems/util/list.rb, line 7 def initialize(value = nil, tail = nil) @value = value @tail = tail end
# File rubygems/util/list.rb, line 32 def self.prepend(list, value) return List.new(value) unless list List.new value, list end
# File rubygems/util/list.rb, line 12 def each n = self while n yield n.value n = n.tail end end
# File rubygems/util/list.rb, line 24 def prepend(value) List.new value, self end
# File rubygems/util/list.rb, line 20 def to_a super.reverse end
This page was generated for Ruby 3.0.0
Ruby-doc.org is a service of James Britt and Neurogami, an erratic source of art, music, and technology.
Generated with Ruby-doc Rdoc Generator 0.42.0.