user=> (bit-and-not 2r1100 2r1001) ; (and X (not Y)) 4 ;; 4 = 2r0100
(defn bit-and-not "Bitwise and with complement" {:added "1.0"} [x y] (. clojure.lang.Numbers andNot x y))
Comments top
No comments for bit-and-not. Log in to add a comment.