In Files

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

Class/Module Index [+]

Quicksearch

RBS::Types::Literal

Attributes

literal[R]
location[R]

Public Class Methods

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

Public Instance Methods

==(other) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 1149
def ==(other)
  other.is_a?(Literal) && other.literal == literal
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 1155
def hash
  self.class.hash ^ literal.hash
end
            
to_json(state = _ = nil) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 1164
def to_json(state = _ = nil)
  { class: :literal, literal: literal.inspect, location: location }.to_json(state)
end
            
to_s(level = 0) click to toggle source
 
               # File rbs-2.1.0/lib/rbs/types.rb, line 1168
def to_s(level = 0)
  literal.inspect
end
            
There is an updated format of the API docs for this version here.