The root Kurosawa library.
Contains logging, configuration, error handling and other common utilities needed in any library or application.
You can interact with the library in the REPL by typing in Emacs:
M-x cider-jack-in
user>
Initialize the components by:
user> (dev)
dev> (reset)
Try out the results namespace:
org.purefn.kurosawa.results> (-> (attempt / 10 2)
(proceed + 3)
(result))
8
org.purefn.kurosawa.results> (-> (attempt / 10 0)
(proceed + 3)
(failure?))
true
$ lein docs
$ open doc/dist/latest/api/index.html
lein release :patch
or similar will release to clojars.
Copyright © 2018 Ladders, PureFn
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close