Class: ArrowFormat::FloatingPointArray

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

Direct Known Subclasses

Float32Array, Float64Array

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) ⇒ FloatingPointArray

Returns a new instance of FloatingPointArray.



286
287
288
# File 'lib/arrow-format/array.rb', line 286

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