(persistent-value? index value)
Returns true if this value should be saved in the state hash map
Source
(defn persistent-value?
"Returns true if this value should be saved in the state hash map"
[index value]
(or (not= (-> index value :read-in)
(-> index value :written-in))
(-> index value :read-in count (> 1))))