MCPcopy Create free account
hub / github.com/apache/arrow / garrow_take_options_new_raw

Function garrow_take_options_new_raw

c_glib/arrow-glib/compute.cpp:11291–11299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11289}
11290
11291GArrowTakeOptions *
11292garrow_take_options_new_raw(const arrow::compute::TakeOptions *arrow_options)
11293{
11294 auto options = GARROW_TAKE_OPTIONS(g_object_new(GARROW_TYPE_TAKE_OPTIONS, NULL));
11295 /* TODO: Use property when we add support for boundscheck. */
11296 auto arrow_new_options = garrow_take_options_get_raw(options);
11297 arrow_new_options->boundscheck = arrow_options->boundscheck;
11298 return options;
11299}
11300
11301arrow::compute::TakeOptions *
11302garrow_take_options_get_raw(GArrowTakeOptions *options)

Callers 1

Calls 1

Tested by

no test coverage detected