28 void will_update(
const key_ref &k)
override {
29 Base::handle_will_update([
this] { pre_update(); },
30 [
this] { Base::notify_will_update(); });
33 void update(
const key_ref &k,
bool changed)
override {
34 Base::handle_update(changed,
35 [
this] {
return did_change(); },
36 [
this] (
bool changed) { Base::notify_update(changed); },
37 [
this] { post_update(); });
44 std::optional<typename Base::value_type> old;
55 return !old.has_value() || Base::value() != old.value();
Cell option specifying that the cell, to which it is applied, should only notify its observers when i...
Definition changes_only_state.hpp:94