MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / get_key_value_unchecked

Method get_key_value_unchecked

rust/src/node.rs:198–203  ·  view source on GitHub ↗
(&self, index: usize)

Source from the content-addressed store, hash-verified

196 /// ```
197 #[inline]
198 pub unsafe fn get_key_value_unchecked(&self, index: usize) -> (&K, &V) {
199 (
200 self.keys.get_unchecked(index),
201 self.values.get_unchecked(index),
202 )
203 }
204
205 /// Push a key to the keys vector.
206 #[inline]

Callers 1

try_get_next_itemMethod · 0.80

Calls 1

get_uncheckedMethod · 0.80

Tested by

no test coverage detected