On 05/06/14 02:27 AM, Paul Nathan wrote: > > This won't work in a CSP system. So....
Rust isn't a pure CSP system. It has both immutable and mutable shared memory alongside various forms of channels. The best tool for the job will vary based on the specific use case. Channels will often be the right choice, but there's no need to prefer them when using shared state maps better to the problem. Either way, Rust prevents data races.
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Rust-dev mailing list [email protected] https://mail.mozilla.org/listinfo/rust-dev
