class RBS::Types::Union
Attributes
Public Class Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 735 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 740 def ==(other) other.is_a?(Union) && other.types == types end
Also aliased as: eql?
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 786 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 750 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 813 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 809 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 746 def hash self.class.hash ^ types.hash end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 794 def map_type(&block) if block Union.new(types: types.map(&block), location: location) else enum_for :map_type end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 802 def map_type_name(&block) Union.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 762 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 758 def to_json(state = _ = nil) { class: :union, types: types, location: location }.to_json(state) end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 769 def to_s(level = 0) strs = types.map do |ty| case ty when Intersection ty.to_s([1, level].max) else ty.to_s end end if level > 0 "(#{strs.join(" | ")})" else strs.join(" | ") end end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 817 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } end