pub fn modify<K, V, R>( store: &mut dyn StateStore, key: &K, f: impl FnOnce(&mut V) -> R, ) -> Result<R>where K: Hash + Eq + Clone + HeapSize, for<'a> &'a K: IntoGroupStateKey, V: Clone + Default + OperatorState + HeapSize,