Class: RBS::Types::ClassSingleton
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Instance Chain:
|
|
Inherits: | Object |
Defined in: | lib/rbs/types.rb |
Class Method Summary
- .new(name:, location:) ⇒ ClassSingleton constructor
Instance Attribute Summary
Instance Method Summary
- #==(other) (also: #eql?)
- #eql?(other)
- #hash
- #map_type_name
- #to_json(state = _ = nil)
- #to_s(level = 0)
EmptyEachType
- Included
NoSubst
- Included
NoFreeVariables
- Included
Constructor Details
.new(name:, location:) ⇒ ClassSingleton
Instance Attribute Details
#location (readonly)
[ GitHub ]# File 'lib/rbs/types.rb', line 160
attr_reader :location
#name (readonly)
[ GitHub ]# File 'lib/rbs/types.rb', line 159
attr_reader :name
Instance Method Details
#==(other) Also known as: #eql?
[ GitHub ]#eql?(other)
[ GitHub ]# File 'lib/rbs/types.rb', line 171
alias eql? ==
#hash
[ GitHub ]# File 'lib/rbs/types.rb', line 173
def hash self.class.hash ^ name.hash end
#map_type_name
[ GitHub ]#to_json(state = _ = nil)
[ GitHub ]#to_s(level = 0)
[ GitHub ]# File 'lib/rbs/types.rb', line 184
def to_s(level = 0) "singleton(#{name})" end