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

Method set_bit

arrow-buffer/src/builder/null.rs:152–155  ·  view source on GitHub ↗
(&mut self, index: usize, v: bool)

Source from the content-addressed store, hash-verified

150 /// Sets a bit in the builder at `index`
151 #[inline]
152 pub fn set_bit(&mut self, index: usize, v: bool) {
153 self.materialize_if_needed();
154 self.bitmap_builder.as_mut().unwrap().set_bit(index, v);
155 }
156
157 /// Gets a bit in the buffer at `index`
158 #[inline]

Callers 6

interleave_dictionariesFunction · 0.45
compute_values_maskFunction · 0.45
logical_nullsMethod · 0.45
unary_optMethod · 0.45

Calls 1

materialize_if_neededMethod · 0.80

Tested by

no test coverage detected