Releases: negrel/conc
Releases Β· negrel/conc
v0.5.0
This release fix a few bugs and race conditions and improves library design decision and test coverage (thanks @sam-fredrickson for 100% test coverage).
A new function IsDone
is added to check whether a context.Context is done.
Function Map2InPlace was removed as it isn't possible to implement it in a safe and efficient way. MapInPlace is a better option.
Nursery.Go executes function even if context is canceled and doesn't silently skip it anymore. An option to silently skip it may be added in the future. Routines can check for context cancellation at startup to mimic old behavior.