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:1050–1055  ·  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

1048 * Since: 0.8.0
1049 */
1050gboolean
1051garrow_array_is_valid(GArrowArray *array, gint64 i)
1052{
1053 auto arrow_array = garrow_array_get_raw(array);
1054 return arrow_array->IsValid(i);
1055}
1056
1057/**
1058 * 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