class RBS::Types::Intersection
Attributes
location
[R]
loc?
Public Class Methods
(types: Array[t], location: loc?) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 836 def initialize(types:, location:) @types = types @location = location end
Public Instance Methods
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 841 def ==(other) other.is_a?(Intersection) && other.types == types end
Also aliased as: eql?
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 879 def each_type(&block) if block types.each(&block) else enum_for :each_type end end
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 851 def free_variables(set = Set.new) set.tap do types.each do |type| type.free_variables set end end end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 906 def has_classish_type? each_type.any? {|type| type.has_classish_type? } end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 902 def has_self_type? each_type.any? {|type| type.has_self_type? } end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 847 def hash self.class.hash ^ types.hash end
() { (t) → t } → Intersection
() → Enumerator[t, Intersection]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 887 def map_type(&block) if block Intersection.new(types: types.map(&block), location: location) else enum_for :map_type end end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 895 def map_type_name(&block) Intersection.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 863 def sub(s) return self if s.empty? self.class.new(types: types.map {|ty| ty.sub(s) }, location: location) end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 859 def to_json(state = nil) { class: :intersection, types: types, location: location }.to_json(state) end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 870 def to_s(level = 0) strs = types.map {|ty| ty.to_s(2) } if level > 0 "(#{strs.join(" & ")})" else strs.join(" & ") end end
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/types.rb, line 910 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } # steep:ignore DeprecatedReference end