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

Method claim

arrow-buffer/src/buffer/null.rs:253–256  ·  view source on GitHub ↗
(&self, pool: &dyn crate::MemoryPool)

Source from the content-addressed store, hash-verified

251 /// Claim memory used by this null buffer in the provided memory pool.
252 #[cfg(feature = "pool")]
253 pub fn claim(&self, pool: &dyn crate::MemoryPool) {
254 // NullBuffer wraps a BooleanBuffer which wraps a Buffer
255 self.buffer.inner().claim(pool);
256 }
257}
258
259impl<'a> IntoIterator for &'a NullBuffer {

Callers

nothing calls this directly

Calls 1

innerMethod · 0.45

Tested by

no test coverage detected