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

Method append_values

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

Source from the content-addressed store, hash-verified

223 /// Append values from another vector.
224 #[inline]
225 pub fn append_values(&mut self, other: &mut Vec<V>) {
226 self.values.append(other);
227 }
228
229 /// Take all keys, leaving an empty vector.
230 #[inline]

Calls

no outgoing calls

Tested by

no test coverage detected