What is the correct way to override a method like \"+\"? Right now I have
(defn- + [x y] (replacement x y))
but this results in warnings on the
You can also override built in arithmetic using generic interfaces from contrib, see the following for a simple example,
http://nakkaya.com/2010/08/02/using-clojure-contrib-generic-interfaces/