方法
ArrowTableslice
起始版本:0.14.0
声明 [源代码]
GArrowTable*
garrow_table_slice (
GArrowTable* table,
gint64 offset,
gint64 length
)
参数
offset(偏移量)
-
类型:
gint64
子
GArrowTable
的偏移量。如果偏移量为负数,则从最后一个元素开始倒数。 length(长度)
-
类型:
gint64
子
GArrowTable
的长度。
返回值
类型: GArrowTable
子 GArrowTable
。它仅涵盖从 offset
到 offset + length
的范围。子 GArrowTable
与基础 GArrowTable
共享值。
该方法的调用者将拥有数据的所有权,并负责释放它。 |