All Projects → fogus → unfix

fogus / unfix

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

Programming Languages

clojure
4091 projects

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].