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:1063–1068  ·  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

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