Class: RBS::Definition::Ancestor::Singleton

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/definition.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:) ⇒ Singleton

Returns a new instance of Singleton.



213
214
215
# File 'lib/rbs/definition.rb', line 213

def initialize(name:)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



211
212
213
# File 'lib/rbs/definition.rb', line 211

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



217
218
219
# File 'lib/rbs/definition.rb', line 217

def ==(other)
  other.is_a?(Singleton) && other.name == name
end

#hashObject



223
224
225
# File 'lib/rbs/definition.rb', line 223

def hash
  self.class.hash ^ name.hash
end