Skip to content
/ unfix Public

Infix and Postfix library for Clojure that was cut from the book.

Notifications You must be signed in to change notification settings

fogus/unfix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unfix is a simple library providing infix and postfix notation in Clojure.

Usage:

(infix [1 + 2] * 3)
;=> 9

(postfix 3 2 1 + *)
;=> [9]

via. Leiningen:

[unfix "1.0"]

via Maven:

<dependency>
  <groupId>unfix</groupId>
  <artifactId>unfix</artifactId>
  <version>1.0</version>
</dependency>

Testing: clj -A:test

More information can be found at the official unfix site

About

Infix and Postfix library for Clojure that was cut from the book.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published