Back

compile-if (clj)

(source)

macro

(compile-if exp then else)
Evaluate `exp` and if it returns logical true and doesn't error, expand to `then`. Else expand to `else`. see clojure.core.reducers

Examples