mirror of
https://github.com/janet-lang/janet
synced 2025-08-31 01:48:04 +00:00
Update documentation for update function.
This commit is contained in:
@@ -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)))
|
||||
|
Reference in New Issue
Block a user