Object
# File rbs-2.1.0/lib/rbs/types.rb, line 594 def ==(other) other.is_a?(Union) && other.types == types end
# File rbs-2.1.0/lib/rbs/types.rb, line 629 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 604 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 600 def hash self.class.hash ^ types.hash end
# File rbs-2.1.0/lib/rbs/types.rb, line 637 def map_type(&block) if block Union.new(types: types.map(&block), location: location) else enum_for :map_type end end
# File rbs-2.1.0/lib/rbs/types.rb, line 645 def map_type_name(&block) Union.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end
# File rbs-2.1.0/lib/rbs/types.rb, line 616 def sub(s) self.class.new(types: types.map {|ty| ty.sub(s) }, location: location) end