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

Function garrow_array_get_n_nulls

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

* garrow_array_get_n_nulls: * @array: A #GArrowArray. * * Returns: The number of NULLs in the array. */

Source from the content-addressed store, hash-verified

1088 * Returns: The number of NULLs in the array.
1089 */
1090gint64
1091garrow_array_get_n_nulls(GArrowArray *array)
1092{
1093 auto arrow_array = garrow_array_get_raw(array);
1094 return arrow_array->null_count();
1095}
1096
1097/**
1098 * garrow_array_get_null_bitmap:

Callers

nothing calls this directly

Calls 2

garrow_array_get_rawFunction · 0.70
null_countMethod · 0.45

Tested by

no test coverage detected