class RBS::Types::Optional

Attributes

location[R]
type[R]

Public Class Methods

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

Public Instance Methods

==(other) click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 614
def ==(other)
  other.is_a?(Optional) && other.type == type
end
Also aliased as: eql?
each_type() { |type| ... } click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 650
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-3.4.0/lib/rbs/types.rb, line 624
def free_variables(set = Set.new)
  type.free_variables(set)
end
has_classish_type?() click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 680
def has_classish_type?
  each_type.any? {|type| type.has_classish_type? }
end
has_self_type?() click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 676
def has_self_type?
  each_type.any? {|type| type.has_self_type? }
end
hash() click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 620
def hash
  self.class.hash ^ type.hash
end
map_type() { |type| ... } click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 665
def map_type(&block)
  if block
    Optional.new(
      type: yield(type),
      location: location
    )
  else
    enum_for :map_type
  end
end
map_type_name(&block) click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 658
def map_type_name(&block)
  Optional.new(
    type: type.map_type_name(&block),
    location: location
  )
end
sub(s) click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 632
def sub(s)
  self.class.new(type: type.sub(s), location: location)
end
to_json(state = _ = nil) click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 628
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-3.4.0/lib/rbs/types.rb, line 636
def to_s(level = 0)
  case t = type
  when RBS::Types::Literal
    case t.literal
    when Symbol
      return "#{type.to_s(1)} ?"
    end
  when RBS::Types::Proc
    return "(#{type.to_s(1)})?"
  end

  "#{type.to_s(1)}?"
end
with_nonreturn_void?() click to toggle source
# File rbs-3.4.0/lib/rbs/types.rb, line 684
def with_nonreturn_void?
  each_type.any? {|type| type.with_nonreturn_void? }
end