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

Method append_keys

rust/src/node.rs:219–221  ·  view source on GitHub ↗
(&mut self, other: &mut Vec<K>)

Source from the content-addressed store, hash-verified

217 /// Append keys from another vector.
218 #[inline]
219 pub fn append_keys(&mut self, other: &mut Vec<K>) {
220 self.keys.append(other);
221 }
222
223 /// Append values from another vector.
224 #[inline]

Calls

no outgoing calls

Tested by

no test coverage detected