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:1089–1094  ·  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

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