Flowdock
method

find_class_by_name

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: Reader
find_class_by_name(full_name) public

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 24
  def find_class_by_name(full_name)
    names = full_name.split(/::/)
    ns = @cache.toplevel
    for name in names
      ns = ns.contained_class_named(name)
      return nil if ns.nil?
    end
    get_class(ns)
  end
Register or log in to add new notes.