Add DoubleRef./=

This commit is contained in:
Jorge Acereda 2019-09-18 18:51:36 +02:00
parent 0423f40b51
commit 336b43a2af

View File

@ -71,6 +71,9 @@ The margin of error is `0.00001`.")
(defn = [a b]
(Double.= @a @b))
(defn /= [a b]
(Double./= @a @b))
(defn < [a b]
(Double.< @a @b))