This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.
inspect()
Same as to_s, but with inspected items.
# File lib/rake/linked_list.rb, line 44 def inspect items = map { |item| item.inspect }.join(", ") "LL(#{items})" end