Class: Polars::Struct
- Inherits:
-
NestedType
- Object
- DataType
- NestedType
- Polars::Struct
- Defined in:
- lib/polars/data_types.rb
Overview
Struct composite type.
Instance Attribute Summary collapse
-
#fields ⇒ Object
readonly
Returns the value of attribute fields.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(fields) ⇒ Struct
constructor
A new instance of Struct.
- #to_s ⇒ Object
- #to_schema ⇒ Object
Constructor Details
Instance Attribute Details
#fields ⇒ Object (readonly)
Returns the value of attribute fields.
509 510 511 |
# File 'lib/polars/data_types.rb', line 509 def fields @fields end |
Instance Method Details
#==(other) ⇒ Object
519 520 521 522 523 524 525 526 527 |
# File 'lib/polars/data_types.rb', line 519 def ==(other) if other.eql?(Struct) true elsif other.is_a?(Struct) fields == other.fields else false end end |
#to_s ⇒ Object
529 530 531 |
# File 'lib/polars/data_types.rb', line 529 def to_s "#{self.class.name}(#{fields.to_h { |f| [f.name, f.dtype] }})" end |
#to_schema ⇒ Object
533 534 535 |
# File 'lib/polars/data_types.rb', line 533 def to_schema @fields.to_h { |f| [f.name, f.dtype] } end |