(remove-key graph)
(remove-key graph x)
(remove-key graph x & more)
Removes the key x from the dependency graph without removing x as a
depedency of other keys.
Source
(defn remove-key
"Removes the key x from the dependency graph without removing x as a
depedency of other keys."
([graph] graph)
([graph x]
(assoc graph
:dependencies (dissoc (:dependencies graph) x)))
([graph x & more]
(reduce remove-key
graph (cons x more))))