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

Function garrow_boolean_array_get_value

c_glib/arrow-glib/basic-array.cpp:1521–1526  ·  view source on GitHub ↗

* garrow_boolean_array_get_value: * @array: A #GArrowBooleanArray. * @i: The index of the target value. * * Returns: The @i-th value. */

Source from the content-addressed store, hash-verified

1519 * Returns: The @i-th value.
1520 */
1521gboolean
1522garrow_boolean_array_get_value(GArrowBooleanArray *array, gint64 i)
1523{
1524 auto arrow_array = garrow_array_get_raw(GARROW_ARRAY(array));
1525 return static_cast<arrow::BooleanArray *>(arrow_array.get())->Value(i);
1526}
1527
1528/**
1529 * garrow_boolean_array_get_values:

Callers

nothing calls this directly

Calls 3

garrow_array_get_rawFunction · 0.70
ValueMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected