(reset-vals! atom newval)
Sets the value of atom to newval. Returns [old new], the value of the
atom before and after the reset.
Source
(defn reset-vals!
"Sets the value of atom to newval. Returns [old new], the value of the
atom before and after the reset."
{:added "1.9"}
^clojure.lang.IPersistentVector [^clojure.lang.IAtom2 atom newval] (.resetVals atom newval))