class RBS::Types::Tuple
Attributes
Public Class Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 446 def initialize(types:, location:) @types = types @location = location end
Public Instance Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 451 def ==(other) other.is_a?(Tuple) && other.types == types end
Also aliased as: eql?
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 488 def each_type(&block) if block types.each(&block) else enum_for :each_type end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 461 def free_variables(set = Set.new) set.tap do types.each do |type| type.free_variables set end end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 518 def has_classish_type? each_type.any? {|type| type.has_classish_type? } end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 514 def has_self_type? each_type.any? {|type| type.has_self_type? } end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 457 def hash self.class.hash ^ types.hash end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 503 def map_type(&block) if block Tuple.new( types: types.map {|type| yield type }, location: location ) else enum_for :map_type end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 496 def map_type_name(&block) Tuple.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 473 def sub(s) return self if s.empty? self.class.new(types: types.map {|ty| ty.sub(s) }, location: location) end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 469 def to_json(state = _ = nil) { class: :tuple, types: types, location: location }.to_json(state) end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 480 def to_s(level = 0) if types.empty? "[ ]" else "[ #{types.join(", ")} ]" end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 522 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } end