Skip to content

kanasubs/benrikuro

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

benrikuro

Clojure utility forms and aliases for some clojure.core forms.

Installing


Add the following entry to the :dependencies vector of your project.clj file: clojars version

Crafting


user=> (use 'benri.kuro)
nil
user=> (update-each {:a 1 :b 2 :c 3} [:a :b] inc)
{:a 2, :c 3, :b 3}
user=> (update-multi {:a 1 :b 2 :c 3} {:a inc :b dec})
{:a 2, :c 3, :b 1}
user=> (map-dregs + [1 2 3] [1 2])

Also read the API.

Gentle contributions


Were made by many many people.

About

Clojure utility forms and aliases for some clojure.core forms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 100.0%