class Rake::LinkedList

def inspect

Same as +to_s+, but with inspected items.
def inspect
  items = map(&:inspect).join(", ")
  "LL(#{items})"
end