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

Function garrow_array_get_length

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

* garrow_array_get_length: * @array: A #GArrowArray. * * Returns: The number of rows in the array. */

Source from the content-addressed store, hash-verified

1062 * Returns: The number of rows in the array.
1063 */
1064gint64
1065garrow_array_get_length(GArrowArray *array)
1066{
1067 auto arrow_array = garrow_array_get_raw(array);
1068 return arrow_array->length();
1069}
1070
1071/**
1072 * garrow_array_get_offset:

Callers 5

print_arrayFunction · 0.85
print_arrayFunction · 0.85
mainFunction · 0.85
print_arrayFunction · 0.85
mainFunction · 0.85

Calls 2

garrow_array_get_rawFunction · 0.70
lengthMethod · 0.45

Tested by

no test coverage detected