Method: RDoc::Context#each_method
- Defined in:
- lib/rdoc/code_object/context.rb
#each_method ⇒ Object
Iterator for methods
754 755 756 757 758 |
# File 'lib/rdoc/code_object/context.rb', line 754 def each_method # :yields: method return enum_for __method__ unless block_given? @method_list.sort.each { |m| yield m } end |