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

Function garrow_array_is_null

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

* garrow_array_is_null: * @array: A #GArrowArray. * @i: The index of the target value. * * Returns: Whether the @i-th value is null or not. * * Since: 0.3.0 */

Source from the content-addressed store, hash-verified

1032 * Since: 0.3.0
1033 */
1034gboolean
1035garrow_array_is_null(GArrowArray *array, gint64 i)
1036{
1037 auto arrow_array = garrow_array_get_raw(array);
1038 return arrow_array->IsNull(i);
1039}
1040
1041/**
1042 * garrow_array_is_valid:

Callers

nothing calls this directly

Calls 2

garrow_array_get_rawFunction · 0.70
IsNullMethod · 0.45

Tested by

no test coverage detected