user=> (bit-flip 2r1011 2) 15 ;; 15 = 2r1111 (bit-flip 2r1111 2) 11 ;; 11 = 2r1011
(defn bit-flip "Flip bit at index n" {:added "1.0" :static true} [x n] (. clojure.lang.Numbers flipBit x n))
Comments top
No comments for bit-flip. Log in to add a comment.