Welcome! Please see the About page for a little more info on how this works.

0 votes
in algo.generic by
closed by

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=>
closed with the note: fixed in algo.generic 1.0.1

1 Answer

+1 vote
by
selected by
 
Best answer

Done, org.clojure/algo.generic version 1.0.1 is now available

...