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

Method is_nullable

arrow-array/src/array/dictionary_array.rs:782–784  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

780 }
781
782 fn is_nullable(&self) -> bool {
783 !self.is_empty() && (self.nulls().is_some() || self.values.is_nullable())
784 }
785
786 fn get_buffer_memory_size(&self) -> usize {
787 self.keys.get_buffer_memory_size() + self.values.get_buffer_memory_size()

Callers

nothing calls this directly

Calls 2

is_emptyMethod · 0.45
nullsMethod · 0.45

Tested by

no test coverage detected