odd?

functionsince v0.0-927 clojure.core/odd?Edit
(odd? n)

Details:

Returns true if n is an odd number.

Throws an exception if n is not an integer.


See Also:


Source docstring:
Returns true if n is odd, throws an exception if n is not an integer
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn odd?
  [n] (not (even? n)))