doc_stats(collection)
public
Returns the length and number of undocumented items in collection.
# File lib/rdoc/stats.rb, line 167
def doc_stats collection
visible = collection.select { |item| item.display? }
[visible.length, visible.count { |item| not item.documented? }]
end