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

Function garrow_array_datum_new

c_glib/arrow-glib/datum.cpp:309–315  ·  view source on GitHub ↗

* garrow_array_datum_new: * @value: A #GArrowArray. * * Returns: A newly created #GArrowArrayDatum. * * Since: 1.0.0 */

Source from the content-addressed store, hash-verified

307 * Since: 1.0.0
308 */
309GArrowArrayDatum *
310garrow_array_datum_new(GArrowArray *value)
311{
312 auto arrow_value = garrow_array_get_raw(value);
313 arrow::Datum arrow_datum(arrow_value);
314 return garrow_array_datum_new_raw(&arrow_datum, value);
315}
316
317typedef struct GArrowScalarDatumPrivate_
318{

Callers

nothing calls this directly

Calls 2

garrow_array_get_rawFunction · 0.70

Tested by

no test coverage detected