Flowdock
method

find_class_by_name

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: RI::RiReader
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/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.