Function: math-oddp
math-oddp is a byte-compiled function defined in calc-ext.el.gz.
Signature
(math-oddp A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
;;;; Miscellaneous math routines.
;;; True if A is an odd integer. [P R R] [Public]
(defun math-oddp (a)
(and (integerp a) (cl-oddp a)))