Simple request. https://github.com/clojure/algo.generic/blob/master/src/main/clojure/clojure/algo/generic/math_functions.clj#L23 provides for an abs
function and so any usage of this library has a warning:
WARNING: abs already refers to: #'clojure.core/abs in namespace: clojure.algo.generic.math-functions, being replaced by: #'clojure.algo.generic.math-functions/abs
Happy to make a jira issue, or patch, or whatever is easiest to help this along.
Repro:
❯ clj -Sdeps '{:deps {org.clojure/algo.generic {:mvn/version "LATEST"}}}'
Clojure 1.11.2
user=> (require 'clojure.algo.generic.math-functions)
WARNING: abs already refers to: #'clojure.core/abs in namespace: clojure.algo.generic.math-functions, being replaced by: #'clojure.algo.generic.math-functions/abs
nil
user=>