In Files

  • rbs-2.1.0/lib/rbs/definition.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RBS::Definition::Ancestor::Instance

Attributes

args[R]
name[R]
source[R]

Public Class Methods

new(name:, args:, source:) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/definition.rb, line 181
def initialize(name,, args,, source))
  @name = name
  @args = args
  @source = source
end
            

Public Instance Methods

==(other) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/definition.rb, line 187
def ==(other)
  other.is_a?(Instance) && other.name == name && other.args == args
end
            
Also aliased as: eql?
eql?(other) click to toggle source
Alias for: ==
hash() click to toggle source
 
               # File rbs-2.1.0/lib/rbs/definition.rb, line 193
def hash
  self.class.hash ^ name.hash ^ args.hash
end
            
There is an updated format of the API docs for this version here.