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 need to exclude the functions that are imported by core:
(ns your-ns (:refer-clojure :exclude [+ ...])) (defn + ...)