Insert a change into the store. # Arguments `hash` - The hash to use as the key `change` - The change to store
(&self, hash: Hash, change: Change)
| 333 | /// * `hash` - The hash to use as the key |
| 334 | /// * `change` - The change to store |
| 335 | pub fn insert(&self, hash: Hash, change: Change) { |
| 336 | self.changes.write().unwrap().insert(hash, change); |
| 337 | } |
| 338 | |
| 339 | /// Insert a change, computing its hash automatically. |
| 340 | /// |