Class: ArrowFormat::DateArray
- Inherits:
-
TemporalArray
- Object
- Array
- PrimitiveArray
- TemporalArray
- ArrowFormat::DateArray
- Defined in:
- lib/arrow-format/array.rb
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Array
#offset, #size, #type, #validity_buffer
Instance Method Summary collapse
-
#initialize(size, validity_buffer, values_buffer) ⇒ DateArray
constructor
A new instance of DateArray.
Methods inherited from PrimitiveArray
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 |