mirror of
https://github.com/janet-lang/janet
synced 2025-11-12 05:23:02 +00:00
Update documentation for update function.
This commit is contained in:
@@ -914,8 +914,9 @@
|
|||||||
res)
|
res)
|
||||||
|
|
||||||
(defn update
|
(defn update
|
||||||
"Accepts a key argument and passes its' associated value to a function.
|
"Accepts a key argument and passes its associated value to a function.
|
||||||
The key then, is associated to the function's return value"
|
The key is the re-associated to the function's return value. Returns the updated
|
||||||
|
data structure ds."
|
||||||
[ds key func & args]
|
[ds key func & args]
|
||||||
(def old (get ds key))
|
(def old (get ds key))
|
||||||
(set (ds key) (func old ;args)))
|
(set (ds key) (func old ;args)))
|
||||||
|
|||||||
Reference in New Issue
Block a user