| Package | Description |
|---|---|
| org.bytedeco.arrow.global |
| Modifier and Type | Method and Description |
|---|---|
static Status |
arrow.Take(FunctionContext ctx,
Array values,
Array indices,
TakeOptions options,
Array out)
\brief Take from an array of values at indices in another array
The output array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
Array values,
ChunkedArray indices,
TakeOptions options,
ChunkedArray out)
\brief Take from an array of values at indices in a chunked array
The output chunked array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
ChunkedArray values,
Array indices,
TakeOptions options,
ChunkedArray out)
\brief Take from a chunked array of values at indices in another array
The output chunked array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
ChunkedArray values,
ChunkedArray indices,
TakeOptions options,
ChunkedArray out)
\brief Take from a chunked array of values at indices in a chunked array
The output chunked array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
Datum values,
Datum indices,
TakeOptions options,
Datum out)
\brief Take from an array of values at indices in another array
|
static Status |
arrow.Take(FunctionContext ctx,
RecordBatch batch,
Array indices,
TakeOptions options,
RecordBatch out)
\brief Take from a record batch at indices in another array
The output batch will have the same schema as the input batch,
with rows taken from the columns in the batch at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
Table table,
Array indices,
TakeOptions options,
Table out)
\brief Take from a table at indices in an array
The output table will have the same schema as the input table,
with rows taken from the columns in the table at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
Table table,
ChunkedArray indices,
TakeOptions options,
Table out)
\brief Take from a table at indices in a chunked array
The output table will have the same schema as the input table,
with rows taken from the values array at the given
indices.
|
Copyright © 2020. All rights reserved.