method

merge

ruby latest stable - Class: RDoc::RI::ModuleDescription

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.

merge(into, from)
private

No documentation available.

# File lib/rdoc/ri/descriptions.rb, line 120
  def merge(into, from)
    names = {}
    into.each {|i| names[i.name] = i }
    from.each {|i| names[i.name] = i }
    into.replace(names.keys.sort.map {|n| names[n]})
  end