Class: Polars::Struct

Inherits:
NestedType show all
Defined in:
lib/polars/data_types.rb

Overview

Struct composite type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fields) ⇒ Struct

Returns a new instance of Struct.



440
441
442
443
444
445
446
# File 'lib/polars/data_types.rb', line 440

def initialize(fields)
  if fields.is_a?(Hash)
    @fields = fields.map { |n, d| Field.new(n, d) }
  else
    @fields = fields
  end
end

Instance Attribute Details

#fieldsObject (readonly)

Returns the value of attribute fields.



438
439
440
# File 'lib/polars/data_types.rb', line 438

def fields
  @fields
end

Instance Method Details

#==(other) ⇒ Object



448
449
450
451
452
453
454
455
456
# File 'lib/polars/data_types.rb', line 448

def ==(other)
  if other.eql?(Struct)
    true
  elsif other.is_a?(Struct)
    fields == other.fields
  else
    false
  end
end

#to_sObject



458
459
460
# File 'lib/polars/data_types.rb', line 458

def to_s
  "#{self.class.name}([#{fields.map(&:to_s).join("\n")}])"
end

#to_schemaObject



462
463
464
# File 'lib/polars/data_types.rb', line 462

def to_schema
  @fields.to_h { |f| [f.name, f.dtype] }
end