MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / insert

Method insert

src/adapter/src/catalog/apply.rs:2766–2768  ·  view source on GitHub ↗
(&mut self, key: K, value: V)

Source from the content-addressed store, hash-verified

2764
2765impl<K: Ord, V> MutableMap<K, V> for BTreeMap<K, V> {
2766 fn insert(&mut self, key: K, value: V) -> Option<V> {
2767 BTreeMap::insert(self, key, value)
2768 }
2769 fn remove(&mut self, key: &K) -> Option<V> {
2770 BTreeMap::remove(self, key)
2771 }

Calls 1

insertFunction · 0.85