1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-15 18:00:01 +00:00

Update documentation for update function.

This commit is contained in:
Calvin Rose 2019-04-21 15:44:03 -04:00
parent 9100794cea
commit 20e94adb61

View File

@ -914,8 +914,9 @@
res)
(defn update
"Accepts a key argument and passes its' associated value to a function.
The key then, is associated to the function's return value"
"Accepts a key argument and passes its associated value to a function.
The key is the re-associated to the function's return value. Returns the updated
data structure ds."
[ds key func & args]
(def old (get ds key))
(set (ds key) (func old ;args)))