Unifier helper functions.
Unifier helper functions.
(cljs? env)
Checks &env in macro and returns true
if that cljs env. Otherwise false
.
Checks &env in macro and returns `true` if that cljs env. Otherwise `false`.
(try-or body)
(try-or body res)
Extended version of try-catch. Usage:
Extended version of try-catch. Usage: * (try-or (/ 1 0)) ;; => nil * (try-or (/ 1 0) false) ;; => false * (try-or (/ 1 0) #(prn (.getMessage %))) ;; => "Divide by zero"
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close