class RBS::Definition::Ancestor::Instance
Attributes
args[R]
name[R]
source[R]
Public Class Methods
new(name:, args:, source:)
click to toggle source
# File rbs-3.4.4/lib/rbs/definition.rb, line 193 def initialize(name:, args:, source:) @name = name @args = args @source = source end
Public Instance Methods
==(other)
click to toggle source
# File rbs-3.4.4/lib/rbs/definition.rb, line 199 def ==(other) other.is_a?(Instance) && other.name == name && other.args == args end
Also aliased as: eql?
hash()
click to toggle source
# File rbs-3.4.4/lib/rbs/definition.rb, line 205 def hash self.class.hash ^ name.hash ^ args.hash end