Deprecate replace-all-matching-values-by-new-value

in favor or 'replace-all-matching' as it is shorter
master
bom 1 month ago
parent b4eb47d584
commit 2008322368

@ -42,16 +42,24 @@
%)
coll))
(defn-spec replace-all-matching-values-by-new-value cp/map-or-seq?
(defn-spec replace-all-matching cp/map-or-seq?
[coll cp/map-or-seq?
value-to-match string?
value-to-replace cp/str-or-number?]
(clojure.walk/postwalk #(if (and (= (type value-to-match) (type %))
match-value string?
replace-value cp/str-or-number?]
(clojure.walk/postwalk #(if (and (= (type value-to-match) (type %))
(= value-to-match %))
value-to-replace
%)
%)
coll))
(defn-spec ^{:deprecated "6.2.4"} replace-all-matching-values-by-new-value cp/map-or-seq?
"Use replace-all-matching instead"
[coll cp/map-or-seq?
value-to-match string?
value-to-replace cp/str-or-number?]
(replace-all-matching coll value-to-match value-to-replace))
(defn-spec concat-vec vector?
[& vs (s/* cp/string-sequence?)]
(into []

Loading…
Cancel
Save