(int-in-range? start end val)
Return true if start <= val, val < end and val is a fixed
precision integer.
Source
(defn int-in-range?
"Return true if start <= val, val < end and val is a fixed
precision integer."
[start end val]
(c/and int? (<= start val) (< val end)))