MCPcopy Create free account
hub / github.com/apache/arrow-rs / is_valid

Method is_valid

arrow-data/src/data.rs:442–444  ·  view source on GitHub ↗
(&self, i: usize)

Source from the content-addressed store, hash-verified

440 /// Returns whether the element at index `i` is not null
441 #[inline]
442 pub fn is_valid(&self, i: usize) -> bool {
443 !self.is_null(i)
444 }
445
446 /// Returns the length (i.e., number of elements) of this [`ArrayData`].
447 #[inline]

Callers 15

writeMethod · 0.45
row_lengthsFunction · 0.45
struct_encode_helperFunction · 0.45
test_single_list_viewFunction · 0.45
test_nested_list_viewFunction · 0.45
print_rowFunction · 0.45
compute_lengthsFunction · 0.45
encodeFunction · 0.45
encode_fixed_size_listFunction · 0.45

Calls 1

is_nullMethod · 0.45

Tested by 5

test_single_list_viewFunction · 0.36
test_nested_list_viewFunction · 0.36