(defn negated-literal "Given a literal l, return a negated version" [l] (assert (-> l :literal-type (= ::literal))) (assoc l :literal-type ::negated))
Comments top
No comments for negated-literal. Log in to add a comment.