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

Function garrow_array_is_valid

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

* garrow_array_is_valid: * @array: A #GArrowArray. * @i: The index of the target value. * * Returns: Whether the @i-th value is valid (not null) or not. * * Since: 0.8.0 */

Source from the content-addressed store, hash-verified

1049 * Since: 0.8.0
1050 */
1051gboolean
1052garrow_array_is_valid(GArrowArray *array, gint64 i)
1053{
1054 auto arrow_array = garrow_array_get_raw(array);
1055 return arrow_array->IsValid(i);
1056}
1057
1058/**
1059 * garrow_array_get_length:

Callers

nothing calls this directly

Calls 2

garrow_array_get_rawFunction · 0.70
IsValidMethod · 0.45

Tested by

no test coverage detected