Liking cljdoc? Tell your friends :D

0.1.44

moved reflection to the yang.java namespace making most of yang babashka compatible

0.1.43

=> (require '[yang.lang :as y])
=> (def m {:moo 42})

=> (y/assoc-if m :zoo 12)
{:moo 42, :zoo 12}

;; nil is not a value: hence skipped
=> (y/assoc-if m :zoo 12 :moo nil)
{:moo 42, :zoo 12}

;; false is a value: hence not skipped
=> (y/assoc-if m :zoo 12 :moo nil :boo false)
{:moo 42, :zoo 12, :boo false}

0.1.42

0.1.39

0.1.34

0.1.33

  • HTTP nil status to 500 in case of an error

0.1.29

Can you improve this documentation? These fine people already did:
anatoly, tolitius & Anatoly
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close