Komentáře •

  • @killermonkey1392
    @killermonkey1392 Před rokem +5

    Amazing video. Coming from a mostly C/C++ and Python background, I have experienced some frustration trying to implement trees with parent references in Rust, experimenting with Option

  • @aricsebastian963
    @aricsebastian963 Před rokem +1

    I like that he is like "well it says (weak) but nothing is there... trust me". Sounds like he has spent a lot of time debugging while putting this together lol :D

  • @tathagataroy5153
    @tathagataroy5153 Před 11 měsíci

    Thanks for the video! As a person getting into systems engineering seeing these concepts used in concrete code helps.

  • @antoniocorbibellot6532

    Thanks for the video!
    I try to think about strong/weak references like: "strong implies ownership while weak doesn't", being the latter (weak) more like a bare pointer.

  • @lautaroblasco
    @lautaroblasco Před 10 měsíci

    Great video!

  • @ravidborse
    @ravidborse Před 3 měsíci

    Thanks.. 👍

  • @mrme5694
    @mrme5694 Před rokem +2

    I like the fact he explains between code executions we did this in this paragraph we did that in this paragraph. He doesn't gloss over but is balanced in giving details.

  • @johnrinehart
    @johnrinehart Před rokem +1

    Awesome

  • @eriife_michael
    @eriife_michael Před 7 měsíci

    What theme / font are you using in this video?

  • @jeffg4686
    @jeffg4686 Před 10 měsíci

    let a = Rc::new(Cons(5, RefCell::new(Rc:new(Nil))));
    What this snippet tells me is that writing small functions is more relevant in Rust than typical language. At least you can read it at a high level with small functions.