Class RDoc::RI::NamedThing
In: ri/descriptions.rb
Parent: Object

Methods

<=>   eql?   hash   new  

Public Class methods

[Source]

    # File ri/descriptions.rb, line 13
13:   def initialize(name)
14:     @name = name
15:   end

Public Instance methods

[Source]

    # File ri/descriptions.rb, line 16
16:   def <=>(other)
17:     @name <=> other.name
18:   end

[Source]

    # File ri/descriptions.rb, line 24
24:   def eql?(other)
25:     @name.eql?(other)
26:   end

[Source]

    # File ri/descriptions.rb, line 20
20:   def hash
21:     @name.hash
22:   end

[Validate]