Fix #72: add update-vals and other fns

This commit is contained in:
Michiel Borkent 2023-11-07 10:43:39 +01:00
parent 71c224baa7
commit f63d50215d
2 changed files with 13 additions and 2 deletions

View file

@ -5,6 +5,7 @@
## Unreleased ## Unreleased
- [#69](https://github.com/babashka/babashka/issues/69): executing script tag with src + whitespace doesn't work - [#69](https://github.com/babashka/babashka/issues/69): executing script tag with src + whitespace doesn't work
- [#72](https://github.com/babashka/babashka/issues/72): add clojure 1.11 functions like `update-vals`
## v0.6.15 (2023-05-04) ## v0.6.15 (2023-05-04)

View file

@ -28,8 +28,18 @@
{'clojure.core {'clojure.core
{'time (sci/copy-var time cljns) {'time (sci/copy-var time cljns)
'system-time (sci/copy-var system-time cljns) 'system-time (sci/copy-var system-time cljns)
'random-uuid random-uuid 'random-uuid (sci/copy-var random-uuid cljns)
'read-string (sci/copy-var read-string rns)} 'read-string (sci/copy-var read-string cljns)
'update-keys (sci/copy-var update-keys cljns)
'update-vals (sci/copy-var update-vals cljns)
'parse-boolean (sci/copy-var parse-boolean cljns)
'parse-double (sci/copy-var parse-double cljns)
'parse-long (sci/copy-var parse-long cljns)
'parse-uuid (sci/copy-var parse-uuid cljns)
'NaN? (sci/copy-var NaN? cljns)
'infinite? (sci/copy-var infinite? cljns)
'iteration (sci/copy-var iteration cljns)
'abs (sci/copy-var abs cljns)}
'goog.object {'set gobject/set 'goog.object {'set gobject/set
'get gobject/get} 'get gobject/get}
'sci.core {'stacktrace sci/stacktrace 'sci.core {'stacktrace sci/stacktrace