digitalmars.D - Mozilla presentation about memory safety in Rust
- Paulo Pinto (8/8) May 22 2014 Hi,
- Guillaume Chatelet (2/2) May 22 2014 Really attractive, I wish we had that in D.
- w0rp (7/15) May 22 2014 I watched this earlier today, I and recommend this for any D
Hi, given the discussions about memory management, I guess it might be worthwhile watching this session. Surely can't be applied to D with the current type system, but it is nonetheless interesting to see how they manage memory. https://air.mozilla.org/guaranteeing-memory-safety-in-rust/ -- Paulo
May 22 2014
Really attractive, I wish we had that in D. Thx for sharing.
May 22 2014
On Thursday, 22 May 2014 at 08:27:14 UTC, Paulo Pinto wrote:Hi, given the discussions about memory management, I guess it might be worthwhile watching this session. Surely can't be applied to D with the current type system, but it is nonetheless interesting to see how they manage memory. https://air.mozilla.org/guaranteeing-memory-safety-in-rust/ -- PauloI watched this earlier today, I and recommend this for any D programmers. The way the Rust language designers have dealt with issues of correctness and safety is really interesting. The effectively conflate const references with shared references, unique references with moves, and make copying more explicit than implicit. It's a really interesting approach.
May 22 2014