user=> (bit-set 2r1011 2) ; index is 0-based 15 ;; 15 = 2r1111 ;; the same in decimal user=> (bit-set 11 2) 15
(defn bit-set "Set bit at index n" {:added "1.0"} [x n] (. clojure.lang.Numbers setBit x n))
Comments top
No comments for bit-set. Log in to add a comment.