Class: ArrowFormat::DateArray

Inherits:
TemporalArray show all
Defined in:
lib/arrow-format/array.rb

Direct Known Subclasses

Date32Array, Date64Array

Instance Attribute Summary

Attributes inherited from Array

#offset, #size, #type, #validity_buffer

Instance Method Summary collapse

Methods inherited from PrimitiveArray

#each_buffer, #to_a

Methods inherited from Array

#empty?, #n_nulls, #null?, #slice, #valid?

Constructor Details

#initialize(size, validity_buffer, values_buffer) ⇒ DateArray

Returns a new instance of DateArray.



311
312
313
# File 'lib/arrow-format/array.rb', line 311

def initialize(size, validity_buffer, values_buffer)
  super(self.class.type, size, validity_buffer, values_buffer)
end