Delete exact is useful when you know the exact values of the rows you want to delete, so conditions are kind of pointless.
[:delete-exact :Customer customer-row]
;; is the same as below, but faster, and saves some typing.
[:delete :Customer [= :% [:_ customer-row]]]
See also :delete.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close