Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
IntervalYearMonthArray in datafusion::common::arrow::array - Rust
[go: Go Back, main page]

Type Alias IntervalYearMonthArray

Source
pub type IntervalYearMonthArray = PrimitiveArray<IntervalYearMonthType>;
Expand description

A PrimitiveArray of “calendar” intervals in whole months

See IntervalYearMonthType for details on representation and caveats.

§Example

let array = IntervalYearMonthArray::from(vec![
  2,  // 2 months
  25, // 2 years and 1 month
  -1  // -1 months
]);

Aliased Type§

pub struct IntervalYearMonthArray { /* private fields */ }