Object
# File rbs-2.1.0/lib/rbs/types.rb, line 662
def ==(other)
other.is_a?(Intersection) && other.types == types
end
# File rbs-2.1.0/lib/rbs/types.rb, line 698
def each_type(&block)
if block
types.each(&block)
else
enum_for :each_type
end
end
# File rbs-2.1.0/lib/rbs/types.rb, line 672
def free_variables(set = Set.new)
set.tap do
types.each do |type|
type.free_variables set
end
end
end
# File rbs-2.1.0/lib/rbs/types.rb, line 668
def hash
self.class.hash ^ types.hash
end
# File rbs-2.1.0/lib/rbs/types.rb, line 706
def map_type(&block)
if block
Intersection.new(types: types.map(&block), location: location)
else
enum_for :map_type
end
end
# File rbs-2.1.0/lib/rbs/types.rb, line 714
def map_type_name(&block)
Intersection.new(
types: types.map {|type| type.map_type_name(&block) },
location: location
)
end
# File rbs-2.1.0/lib/rbs/types.rb, line 684
def sub(s)
self.class.new(types: types.map {|ty| ty.sub(s) },
location: location)
end