Flowdock
method

find_classes_in

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Reader

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.

find_classes_in(res, klass) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/ri/reader.rb, line 86
  def find_classes_in(res, klass)
    classes = klass.classes_and_modules
    for c in classes
      res << c.full_name
      find_classes_in(res, c)
    end
    res
  end
Register or log in to add new notes.