mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
760d8c1cdd
This commit makes send behave the same as recv: that the call will return false if the channel is closed while a thread is waiting on the blocking operation. Prior logic would have send return true even if the channel was actually closed rather than read from. Docs adjusted to make this clear. Tests added to lock in this behaviour.