pub type Decimal64Array = PrimitiveArray<Decimal64Type>;
Expand description
A PrimitiveArray
of 64-bit fixed point decimals
§Examples
Construction
// Create from Vec<Option<i64>>
let arr = Decimal64Array::from(vec![Some(1), None, Some(2)]);
// Create from Vec<i64>
let arr = Decimal64Array::from(vec![1, 2, 3]);
// Create iter/collect
let arr: Decimal64Array = std::iter::repeat(42).take(10).collect();
See PrimitiveArray
for more information and examples
Aliased Type§
pub struct Decimal64Array {
data_type: DataType,
values: ScalarBuffer<i64>,
nulls: Option<NullBuffer>,
}
Fields§
§data_type: DataType
§values: ScalarBuffer<i64>
Values data
nulls: Option<NullBuffer>