class RBS::Types::Union
属性
location[R]
types[R]
公共类方法
new(types:, location:) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 721 def initialize(types:, location:) @types = types @location = location end
公共实例方法
==(other) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 726 def ==(other) other.is_a?(Union) && other.types == types end
也别名为: eql?
each_type(&block) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 761 def each_type(&block) if block types.each(&block) else enum_for :each_type end end
free_variables(set = Set.new) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 736 def free_variables(set = Set.new) set.tap do types.each do |type| type.free_variables set end end end
has_classish_type?() 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 788 def has_classish_type? each_type.any? {|type| type.has_classish_type? } end
has_self_type?() 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 784 def has_self_type? each_type.any? {|type| type.has_self_type? } end
hash() 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 732 def hash self.class.hash ^ types.hash end
map_type(&block) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 769 def map_type(&block) if block Union.new(types: types.map(&block), location: location) else enum_for :map_type end end
map_type_name(&block) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 777 def map_type_name(&block) Union.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end
sub(s) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 748 def sub(s) self.class.new(types: types.map {|ty| ty.sub(s) }, location: location) end
to_json(state = _ = nil) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 744 def to_json(state = _ = nil) { class: :union, types: types, location: location }.to_json(state) end
to_s(level = 0) 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 753 def to_s(level = 0) if level > 0 "(#{types.join(" | ")})" else types.join(" | ") end end
with_nonreturn_void?() 点击切换源代码
# File rbs-3.8.0/lib/rbs/types.rb, line 792 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } end