This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.
to_s()
Convert to string: LL(item, item…)
# File lib/rake/linked_list.rb, line 38 def to_s items = map { |item| item.to_s }.join(", ") "LL(#{items})" end