In Files

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

Class/Module Index [+]

Quicksearch

RBS::Types::ClassSingleton

Attributes

location[R]
name[R]

Public Class Methods

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

Public Instance Methods

==(other) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 174
def ==(other)
  other.is_a?(ClassSingleton) && other.name == name
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/types.rb, line 180
def hash
  self.class.hash ^ name.hash
end
            
map_type_name() click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 197
def map_type_name
  ClassSingleton.new(
    name: yield(name, location, self),
    location: location
  )
end
            
to_json(state = _ = nil) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 187
def to_json(state = _ = nil)
  { class: :class_singleton, name: name, location: location }.to_json(state)
end
            
to_s(level = 0) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 191
def to_s(level = 0)
  "singleton(#{name})"
end
            
There is an updated format of the API docs for this version here.