user=> (Integer/toBinaryString 235) "11101011" user=> (Integer/toBinaryString 199) "11000111" user=> (bit-and 235 199) 195 user=> (Integer/toBinaryString 195) "11000011" ;;11101011 ;;& ;;11000111 ;;= ;;11000011
(defn bit-and
"Bitwise and"
{:inline (fn [x y] `(. clojure.lang.Numbers (and ~x ~y)))
:added "1.0"}
[x y] (. clojure.lang.Numbers and x y))
Comments top
No comments for bit-and. Log in to add a comment.