Flowdock
method

full_name

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: RI::MethodEntry
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_cache.rb, line 156
    def full_name
      res = @in_class.full_name
      unless res.empty?
        if @is_class_method
          res << "::"
        else
          res << "#"
        end
      end
      res << @name
    end
Register or log in to add new notes.