We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d64597 + 4408c25 commit 50da02bCopy full SHA for 50da02b
src/malli/util.cljc
@@ -292,7 +292,7 @@
292
options)))
293
294
(defn dissoc
295
- "Like [[clojure.core/dissoc]], but for EntrySchemas."
+ "Like [[clojure.core/dissoc]], but for EntrySchemas. Only supports one key at a time."
296
([?schema key]
297
(dissoc ?schema key nil))
298
([?schema key options]
@@ -328,7 +328,7 @@
328
(when schema (m/-get schema k default)))))
329
330
(defn assoc
331
- "Like [[clojure.core/assoc]], but for LensSchemas."
+ "Like [[clojure.core/assoc]], but for LensSchemas. Only supports one key-value pair at a time."
332
([?schema key value]
333
(assoc ?schema key value nil))
334
([?schema key value options]
0 commit comments