Map (on)to-chan!(!) core.async fns (#1371)
* Map (on)to-chan!(!) core.async fns These are recent replacements for their deprecated predecessors onto-chan & to-chan. * Add note to changelog about #1370 fix
This commit is contained in:
parent
00dee39196
commit
aa0da8f503
2 changed files with 5 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ A preview of the next release can be installed from
|
|||
|
||||
## Unreleased
|
||||
|
||||
- [#1370](https://github.com/babashka/babashka/issues/1370): Map to-chan!, to-chan!!, onto-chan!, & onto-chan!! core.async fns into babashka's SCI core.async namespace.
|
||||
- [#1358](https://github.com/babashka/babashka/issues/1358): Expose a subset of java.lang.ref to enable hooking into the destruction/GC of objects ([@retrogradeorbit](https://github.com/retrogradeorbit))
|
||||
- [#1364](https://github.com/babashka/babashka/issues/1364): Be tolerant of unknown tags in `bb.edn`
|
||||
- Add and expose `babashka.classes/all-classes` to get a list of all available classes (as `java.lang.Class` objects) ([@eerohele](https://github.com/eerohele))
|
||||
|
|
|
|||
|
|
@ -68,6 +68,8 @@
|
|||
'mult (copy-var async/mult core-async-namespace)
|
||||
'offer! (copy-var async/offer! core-async-namespace)
|
||||
'onto-chan (copy-var async/onto-chan core-async-namespace)
|
||||
'onto-chan! (copy-var async/onto-chan! core-async-namespace)
|
||||
'onto-chan!! (copy-var async/onto-chan!! core-async-namespace)
|
||||
'partition (copy-var async/partition core-async-namespace)
|
||||
'partition-by (copy-var async/partition-by core-async-namespace)
|
||||
'pipe (copy-var async/pipe core-async-namespace)
|
||||
|
|
@ -92,6 +94,8 @@
|
|||
'thread-call (copy-var thread-call core-async-namespace)
|
||||
'timeout (copy-var async/timeout core-async-namespace)
|
||||
'to-chan (copy-var async/to-chan core-async-namespace)
|
||||
'to-chan! (copy-var async/to-chan! core-async-namespace)
|
||||
'to-chan!! (copy-var async/to-chan!! core-async-namespace)
|
||||
'toggle (copy-var async/toggle core-async-namespace)
|
||||
'transduce (copy-var async/transduce core-async-namespace)
|
||||
'unblocking-buffer? (copy-var async/unblocking-buffer? core-async-namespace)
|
||||
|
|
|
|||
Loading…
Reference in a new issue