Class: RBS::Types::Tuple
- Inherits:
-
Object
- Object
- RBS::Types::Tuple
- 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
- #has_classish_type? ⇒ Boolean
- #has_self_type? ⇒ Boolean
- #hash ⇒ Object
-
#initialize(types:, location:) ⇒ Tuple
constructor
A new instance of Tuple.
- #map_type(&block) ⇒ Object
- #map_type_name(&block) ⇒ Object
- #sub(s) ⇒ Object
- #to_json(state = _ = nil) ⇒ Object
- #to_s(level = 0) ⇒ Object
- #with_nonreturn_void? ⇒ Boolean
Constructor Details
#initialize(types:, location:) ⇒ Tuple
Returns a new instance of Tuple.
446 447 448 449 |
# File 'lib/rbs/types.rb', line 446 def initialize(types:, location:) @types = types @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
444 445 446 |
# File 'lib/rbs/types.rb', line 444 def location @location end |
#types ⇒ Object (readonly)
Returns the value of attribute types.
443 444 445 |
# File 'lib/rbs/types.rb', line 443 def types @types end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
451 452 453 |
# File 'lib/rbs/types.rb', line 451 def ==(other) other.is_a?(Tuple) && other.types == types end |
#each_type(&block) ⇒ Object
488 489 490 491 492 493 494 |
# File 'lib/rbs/types.rb', line 488 def each_type(&block) if block types.each(&block) else enum_for :each_type end end |
#free_variables(set = Set.new) ⇒ Object
461 462 463 464 465 466 467 |
# File 'lib/rbs/types.rb', line 461 def free_variables(set = Set.new) set.tap do types.each do |type| type.free_variables set end end end |
#has_classish_type? ⇒ Boolean
518 519 520 |
# File 'lib/rbs/types.rb', line 518 def has_classish_type? each_type.any? {|type| type.has_classish_type? } end |
#has_self_type? ⇒ Boolean
514 515 516 |
# File 'lib/rbs/types.rb', line 514 def has_self_type? each_type.any? {|type| type.has_self_type? } end |
#hash ⇒ Object
457 458 459 |
# File 'lib/rbs/types.rb', line 457 def hash self.class.hash ^ types.hash end |
#map_type(&block) ⇒ Object
503 504 505 506 507 508 509 510 511 512 |
# File 'lib/rbs/types.rb', line 503 def map_type(&block) if block Tuple.new( types: types.map {|type| yield type }, location: location ) else enum_for :map_type end end |
#map_type_name(&block) ⇒ Object
496 497 498 499 500 501 |
# File 'lib/rbs/types.rb', line 496 def map_type_name(&block) Tuple.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end |
#sub(s) ⇒ Object
473 474 475 476 477 478 |
# File 'lib/rbs/types.rb', line 473 def sub(s) return self if s.empty? self.class.new(types: types.map {|ty| ty.sub(s) }, location: location) end |
#to_json(state = _ = nil) ⇒ Object
469 470 471 |
# File 'lib/rbs/types.rb', line 469 def to_json(state = _ = nil) { class: :tuple, types: types, location: location }.to_json(state) end |
#to_s(level = 0) ⇒ Object
480 481 482 483 484 485 486 |
# File 'lib/rbs/types.rb', line 480 def to_s(level = 0) if types.empty? "[ ]" else "[ #{types.join(", ")} ]" end end |
#with_nonreturn_void? ⇒ Boolean
522 523 524 |
# File 'lib/rbs/types.rb', line 522 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } end |