Method: RDoc::MethodAttr#see

Defined in:
lib/rdoc/method_attr.rb

#seeObject

A method/attribute to look at, in particular if this method/attribute has no documentation.

It can be a method/attribute of the superclass or of an included module, including the Kernel module, which is always appended to the included modules.

Returns nil if there is no such method/attribute. The #is_alias_for method/attribute, if any, is not included.

Templates may generate a “see also …” if this method/attribute has documentation, and “see …” if it does not.



148
149
150
151
# File 'lib/rdoc/method_attr.rb', line 148

def see
  @see = find_see if @see == false
  @see
end