We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca9150b commit 854d838Copy full SHA for 854d838
1 file changed
pixie/stdlib.pxi
@@ -2719,7 +2719,9 @@ Calling this function on something that is not ISeqable returns a seq with that
2719
(throw [::ComparisonError (str x " does not satisfy IComparable")])))
2720
2721
(defn vary-meta
2722
- [x f & args]
2723
- "Returns x with meta data updated with the application of f and args to it.
+ {:doc "Returns x with meta data updated with the application of f and args to it.
2724
ex: (vary-meta x assoc :foo 42)"
+ :signatures [[x f & args]]
2725
+ :added "0.1"}
2726
+ [x f & args]
2727
(with-meta x (apply f (meta x) args)))
0 commit comments