Plurrrr

Sat 13 Nov 2021

Alice Through the Looking Glass (2016)

Alice returns to the whimsical world of Wonderland and travels back in time to help the Mad Hatter.

In the afternoon we watched Alice Through the Looking Glass. I liked the movie and give it a 7 out of 10.


tags: [rust] ...

Rust data structures with circular references

To implement its safety guarantees, the Rust compiler keeps careful track of ownership and references throughout a program. This makes writing certain kinds of data structures challenging; in particular, data structures that have circular references.

Source: Rust data structures with circular references, an article by Eli Bendersky.