Class: RBS::Types::Intersection
- Inherits:
-
Object
- Object
- RBS::Types::Intersection
- Defined in:
- lib/rbs/types.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#types ⇒ Object
readonly
Returns the value of attribute types.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #each_type(&block) ⇒ Object
- #free_variables(set = Set.new) ⇒ Object
- #hash ⇒ Object
-
#initialize(types:, location:) ⇒ Intersection
constructor
A new instance of Intersection.
- #map_type(&block) ⇒ Object
- #map_type_name(&block) ⇒ Object
- #sub(s) ⇒ Object
- #to_json(state = _ = nil) ⇒ Object
- #to_s(level = 0) ⇒ Object
Constructor Details
#initialize(types:, location:) ⇒ Intersection
Returns a new instance of Intersection.
580 581 582 583 |
# File 'lib/rbs/types.rb', line 580 def initialize(types:, location:) @types = types @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
578 579 580 |
# File 'lib/rbs/types.rb', line 578 def location @location end |
#types ⇒ Object (readonly)
Returns the value of attribute types.
577 578 579 |
# File 'lib/rbs/types.rb', line 577 def types @types end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
585 586 587 |
# File 'lib/rbs/types.rb', line 585 def ==(other) other.is_a?(Intersection) && other.types == types end |
#each_type(&block) ⇒ Object
621 622 623 624 625 626 627 |
# File 'lib/rbs/types.rb', line 621 def each_type(&block) if block types.each(&block) else enum_for :each_type end end |
#free_variables(set = Set.new) ⇒ Object
595 596 597 598 599 600 601 |
# File 'lib/rbs/types.rb', line 595 def free_variables(set = Set.new) set.tap do types.each do |type| type.free_variables set end end end |
#hash ⇒ Object
591 592 593 |
# File 'lib/rbs/types.rb', line 591 def hash self.class.hash ^ types.hash end |
#map_type(&block) ⇒ Object
629 630 631 632 633 634 635 |
# File 'lib/rbs/types.rb', line 629 def map_type(&block) if block Intersection.new(types: types.map(&block), location: location) else enum_for :map_type end end |
#map_type_name(&block) ⇒ Object
637 638 639 640 641 642 |
# File 'lib/rbs/types.rb', line 637 def map_type_name(&block) Intersection.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end |
#sub(s) ⇒ Object
607 608 609 610 |
# File 'lib/rbs/types.rb', line 607 def sub(s) self.class.new(types: types.map {|ty| ty.sub(s) }, location: location) end |
#to_json(state = _ = nil) ⇒ Object
603 604 605 |
# File 'lib/rbs/types.rb', line 603 def to_json(state = _ = nil) { class: :intersection, types: types, location: location }.to_json(state) end |
#to_s(level = 0) ⇒ Object
612 613 614 615 616 617 618 619 |
# File 'lib/rbs/types.rb', line 612 def to_s(level = 0) strs = types.map {|ty| ty.to_s(2) } if level > 0 "(#{strs.join(" & ")})" else strs.join(" & ") end end |