int-rotate-left

functionsince v0.0-2261Edit
(int-rotate-left x n)

Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn ^number int-rotate-left [x n]
  (bit-or
    (bit-shift-left x n)
    (unsigned-bit-shift-right x (- n))))