class RBS::Types::Optional

Attributes

location[R]
type[R]

Public Class Methods

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

Public Instance Methods

==(other) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 471
def ==(other)
  other.is_a?(Optional) && other.type == type
end
Also aliased as: eql?
each_type() { |type| ... } click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 505
def each_type
  if block_given?
    yield type
  else
    enum_for :each_type
  end
end
eql?(other)
Alias for: ==
free_variables(set = Set.new) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 481
def free_variables(set = Set.new)
  type.free_variables(set)
end
hash() click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 477
def hash
  self.class.hash ^ type.hash
end
map_type_name(&block) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 513
def map_type_name(&block)
  Optional.new(
    type: type.map_type_name(&block),
    location: location
  )
end
sub(s) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 489
def sub(s)
  self.class.new(type: type.sub(s), location: location)
end
to_json(state = _ = nil) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 485
def to_json(state = _ = nil)
  { class: :optional, type: type, location: location }.to_json(state)
end
to_s(level = 0) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 493
def to_s(level = 0)
  case t = type
  when RBS::Types::Literal
    case t.literal
    when Symbol
      return "#{type.to_s(1)} ?"
    end
  end

  "#{type.to_s(1)}?"
end