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:1035–1040  ·  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

1033 * Since: 0.3.0
1034 */
1035gboolean
1036garrow_array_is_null(GArrowArray *array, gint64 i)
1037{
1038 auto arrow_array = garrow_array_get_raw(array);
1039 return arrow_array->IsNull(i);
1040}
1041
1042/**
1043 * 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