(defn remove-cells "Given a collection of cells, remove them from the dataflow." [df cells] (dosync (let [new-cells (difference (:cells @df) (set cells))] (ref-set df (build-dataflow* new-cells)) (initialize df))))
Comments top
No comments for remove-cells. Log in to add a comment.