Crust of Rust: Subtyping and Variance

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ย. 2024

ความคิดเห็น • 112

  • @lucasa8710
    @lucasa8710 16 วันที่ผ่านมา +1

    having just a tiny bit of understanding of how types works in functional languages help understand this SO MUCH

  • @valthorhalldorsson9300
    @valthorhalldorsson9300 3 ปีที่แล้ว +85

    This was a great walkthrough. Pronouncing T: U as “T is at least as useful as U” made a lot of the other concepts click into place for me.

    • @lewdwig
      @lewdwig 3 ปีที่แล้ว

      The borrow checker doesn’t really understand the concept of “usefulness”. Subtyping in rust is determined solely by the “outlives” relation. The lifetime ‘static outlives all ‘a, therefore it is a subtype of all ‘a.

    • @patricepeterson1736
      @patricepeterson1736 3 ปีที่แล้ว +7

      I like to think of things in the way the Nomicon lays out: T is a U AND MORE. Same with lifetimes: You can pronounce 'a: 'b as "Lifetime a is lifetime b AND MORE" (i.e. a is ~longer than b).
      Another useful reading might be "implements": T implements U. 'a implements 'b (meaning 'a is ~longer than 'b).

    • @interuptingcactus
      @interuptingcactus 2 ปีที่แล้ว

      Something that really made it click for me was to think of `T: impl TraitFoo` and " 'a: 'b " as the same syntax and then realizing that saying 'a outlives 'b is the same as saying 'b is a subclass of 'a or 'a upcasts to 'b

    • @aqua3418
      @aqua3418 2 ปีที่แล้ว

      @@interuptingcactus I think you mean, 'b upcasts to 'a (if 'b is a subclass, 'b would be the one upcasting to 'a, which is the superclass)

    • @karelhrkal8753
      @karelhrkal8753 2 ปีที่แล้ว +3

      This also works with traits (kind of). BorrowMut is at least as useful as Borrow, and look at the definition: BorrowMut: Borrow.

  • @TheMisterSpok
    @TheMisterSpok 3 ปีที่แล้ว +22

    Oh my God, thank you! The logic behind contravariance has been avoiding my grasp for too long. You explained it in a way I could wrap my head around, and expand it to meet the mental model of type parameters I had.

  • @calaphos
    @calaphos 3 ปีที่แล้ว +5

    I think this explanation about Co and Contra variance made me finally understand Javas Generics.

  • @sufyanfaris
    @sufyanfaris 3 ปีที่แล้ว +22

    I'm putting this as an analogy in my notes to explain covariance vs contravariance:
    (please tell me if it's wrong)
    In a world where some people are immortal, the immortal people are more useful over people that are not. ( 'static > 'a )
    But, if there's a place that only requires people to be immortal to get in, then it's less useful as in less people can go there. ( Fn(&'static) < Fn(&'a) )

    • @SimonClarkstone
      @SimonClarkstone 2 ปีที่แล้ว +4

      Ah, that's what was going on with the PhantomData

    • @dog4ik
      @dog4ik ปีที่แล้ว

      Thank you

  • @leu2304
    @leu2304 ปีที่แล้ว +4

    Every time I stuck on some hard to understand concept in rust, I know Jon already should have good stream about it :D . Thank you so much. Without your support learning rust was much harder.

  • @Codeaholic1
    @Codeaholic1 3 ปีที่แล้ว +8

    Nice talk. I studied variance when learning Scala and for some reason it seemed easier to grasp there, but you did a great job explaining it here in Rust.

  • @VivekYadav-ds8oz
    @VivekYadav-ds8oz 3 ปีที่แล้ว +2

    Finally after a 2nd, fully attentive watch, I grasped the whole video and now Rust's inner "thinking" makes a lot more sense to me.

  • @aqua3418
    @aqua3418 2 ปีที่แล้ว +2

    I was reading the nomicon article on subtyping and variance, and it kinda clicked for me. I wrote a comment on the Rust discord, this may be useful for others:
    ```
    F is covariant if F is a subtype of F (subtyping "passes through")
    F is contravariant if F is a subtype of F (subtyping is "inverted")
    ```
    This is essentially saying that
    - For covariant, the most useful type is `` (the longest lifetime)
    - For contravariant, the most useful type is `` (the shortest lifetime)
    So, contravariant and covariant have a nice interplay together between them. For example in `&'a T` we can see `'a` is covariant, hence the most useful type is the longest lifetime, whereas in `fn(T) -> U`, we can see that for `T`, the most useful type is the shortest lifetime (contravariant; so the function can accept any argument since it is asking for the shortest one), hence the covariant's lifetime can be shortened down to whatever needed.
    This makes calling function arguments easy since covariants have a longer lifetime, and the function expects a shorter lifetime, so we can shorten to whatever is needed (which is the entire point of it; so we can pass any longer lived item to a function; the function shouldn't care if the reference lives for a shorter time; it can forget those details since intuitively the concept holds; 'short is always valid for any 'long). I also liked picturing contravariance as `how strict the requirements it places are on the caller` (and clearly, contravariance is the least strict on the caller since it's asking for the smallest lifetime)

  • @samroelants
    @samroelants 9 วันที่ผ่านมา

    A little late to the party, but the way I usually think about it is:
    - Anything that "contains"/"yields" some type T is *covariant* in that type (whether it's Java classes or rust lifetimes),
    - Anything that "consumes"/"requires" a type T is *contravariant* in that type.
    For example, Box and HashMap
    Functions are the obvious example of things that "consume" &'a T, but there's another obvious one: HashMap consumes/requires its key type! So, HashMap is actually _contravariant_ in K!
    (For example, a HashMap)
    It kinda makes sense in a hand-wavy way. Philosophically, there's very little difference between a hashmap that maps K's to V's and a function that maps K's to V's...

  • @darklajid
    @darklajid 7 หลายเดือนก่อน

    I loved this (going back in time and watching all your recordings).
    The main content was excellent and I'm glad you did this for the world at large. My OCD is complaining that the strtok isn't even remotely doing what the C docs said and I wouldn't know how to do that well in the first place ("call once with an argument, then call with null until we're done") with lifetimes..

  • @digama0
    @digama0 3 ปีที่แล้ว +5

    Great stream as ever, Jon. A small correction regarding "1:10:11​ Is 'b: 'a implied for &'a &'b?": In fact, the compiler does "reverse engineer" a "where 'b: 'a" bound from the mere existence of the type &'a &'b T. Here's an example to demonstrate this:
    fn foo(_: &mut &'a &'b bool) where 'b: 'a {}
    fn bar(x: &mut &'a &'b bool) { foo(x) }
    In order for bar to call foo, it needs to establish that 'b: 'a, which it deduces because of the well formedness of its input arguments. (The extra &mut reference is there to ensure no additional subtyping happens, so we really need the lifetimes 'a and 'b to be related rather than some weakening of them. Double check that this doesn't work if you use 'a: 'b in bar instead.)
    This is actually a useful fact to know if you ever want to (or have the misfortune to need to) write lifetime constraints in higher order types: for fn(&'a bool, &'b bool) is the type of a function pointer with no constraints on 'a and 'b, and if you wanted to have a constraint anyway, "for

  • @nicolaslevy5735
    @nicolaslevy5735 3 ปีที่แล้ว +4

    I think Curry-Howard correspondance helps understanding variance. For example
    Covariance in Curry-Howard terms becomes
    If you have a proof A=>B you can get a proof of B by providing a proof of A' where A'=>A
    contravariance in Curry-Howard terms would be:
    If you have a proof (A=>B) =>C you can prove C by proving any statement of the form A'=>B where A=>A'

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว

      I think that helps for those already familiar with the theory, but not so much for people who are "just programmers", for the lack of a better term (and I count myself in that category).

  • @theopantamis9184
    @theopantamis9184 ปีที่แล้ว

    Thanks ! I like the small details on dropcheck you added in the video 👍
    I think the moment people are more used to covariance and contravariance is really when writing function signature: you want the "less useful" types in argument and return the "more useful" in output. The most common case is when you use ref of slice in arguments because you know all smart pointer can deref into slices, that's a feature trait and not contravariance but it really feel the same.

  • @OSSMaxB
    @OSSMaxB 2 หลายเดือนก่อน

    Thank you. I now understand what variance means. I had some intuitive understanding of parts of it, but this made it concrete.

  • @nicholasmontano7172
    @nicholasmontano7172 3 ปีที่แล้ว +4

    Yessss, so excited for this! When people talked about this stuff in Rust discord it went *woosh* over my head. Thank you so much for covering it!!! I'll be sure to always link this video when questions around this topic come up

  • @SpaceOddity174
    @SpaceOddity174 2 ปีที่แล้ว +1

    The way this made sense to me was: If a variable is provided to me (I'm reading it), it must be at least as useful as I expect. If I'm providing a varaible (passing into a fn), I can only meet requirements for less useful things. If something is both provided to me and I'm providing it (mutable value), I can't meet a requirement to provide something more useful and I also can't work with something less useful.

  • @IamSedrik
    @IamSedrik 3 ปีที่แล้ว

    Thanks you so much for this! I have run into this multiple times and never truly understood it.
    I went into this video not expecting to get much out of it because frankly Variance is something I have not read about and the error message doesn't communicate that I should look at it (or at least has not communicated it when I encountered it before) so it was an enlightening experience actually getting an understanding of what the issue is and why the solution is what it is.

  • @isaactfa
    @isaactfa 3 ปีที่แล้ว +4

    Hi Jon, I requested this topic on the last Crust of Rust stream, so thank you very much for doing a video on it! It really helped a ton.

  • @TrustifierTubes
    @TrustifierTubes 3 ปีที่แล้ว +1

    This is such a nice explanation of contravariance!!! It could not be more well phrased!

  • @inf0phreak
    @inf0phreak 3 ปีที่แล้ว +4

    For a more theoretical approach to subtyping (mostly as it applies to inheritance), you can read up on the Liskov Substitution Principle.

  • @АлександрЧепурнов-э3я
    @АлександрЧепурнов-э3я 2 ปีที่แล้ว

    A great explanation of contravariance. That concept didn't let me sleep a couple of nights, but you made it clear, thanks a lot. Great vid and great series, you're cool!

  • @loarca11
    @loarca11 8 หลายเดือนก่อน

    Man, this is such a wonderful explanation, seriously. I'm trully amazed. Much love man!

  •  ปีที่แล้ว

    These videos are a gold mine, literally. Thank you for your efforts!

  • @Tim72349
    @Tim72349 3 ปีที่แล้ว

    I just thought of the following regarding invariance in T of &mut T:
    for references we can distinguish the operations of reading and writing:
    1) a reference &onlyread T is covariant in T but not contravariant
    - if U

  • @LukeFrisken
    @LukeFrisken 3 ปีที่แล้ว

    Thanks so much for taking the time to explain this in detail, I think it's a fairly common problem people run into and makes people scared of lifetimes.

  • @SimonClarkstone
    @SimonClarkstone 2 ปีที่แล้ว

    50:10 Looking at that table after your explanation, I now notice the lack of a contravariant, write-only reference type.

  • @flyingsquirrel3271
    @flyingsquirrel3271 3 ปีที่แล้ว +1

    Thank you so much!! These explanations are very clear. Now it almost seems obvious to me that this concept exists and that we need terminology for it.

  • @angelcaru
    @angelcaru 7 หลายเดือนก่อน +2

    If there's a Rust reference, is there also an Owned Rust or a Rust Box?

  • @andersmusikka
    @andersmusikka 2 ปีที่แล้ว

    This video really helped me understand variance in rust better! Thank you!

  • @remyclarke4020
    @remyclarke4020 3 ปีที่แล้ว

    I was just looking this up recently, I'm so happy that there are new videos on the subject.

  • @adamodimattia
    @adamodimattia 2 ปีที่แล้ว

    Really awesome explanation of contravariance!

  • @marrtins
    @marrtins ปีที่แล้ว

    Best explanation about variance! Thanks!

  • @szabo369peter
    @szabo369peter 3 ปีที่แล้ว

    This was enlightening for the issues I actually had with OCaml :-D. Thanks for explaining the concept of Co-, Contra-, and Invariance like no other material I read/saw. Good job!!!

  • @Vlad-hl1gy
    @Vlad-hl1gy 4 หลายเดือนก่อน

    mind-blowing presentation ❤

  • @94Quang
    @94Quang 3 ปีที่แล้ว +6

    when I encounter those kinds of problems, it feels like the new " find the missing '}' "

  • @random6434
    @random6434 3 ปีที่แล้ว +3

    What does my head in with Rust is that I seem to be stuck thinking of subtyping in terms of sets. There's the set of all animals, of which cats are a subset that are special in some way. Subset, thus a subtype. What does my head in is that 'static is a subtype of everything, but I think thinking, 'static is the bigger thing.
    I suppose the correct way to think about this is to imagine the set of all lifetimes, and say to myself that 'static is a very small subset as it's only one very specific element. Not only is it a cat, it's a one specific cat. The set that 'static is in is very small (one element) and thus it's the subtype. I wonder if I can persuade my brain to think about it that way.

    • @patricepeterson1736
      @patricepeterson1736 3 ปีที่แล้ว +4

      I used to do the same! What helped me was to think of parameters (i.e. lifetimes/sub-lifetimes and types/subtypes) in terms of the *properties they exhibit* instead. For example, a "cat" is a subtype of "animal", because it exhibits all the properties of an animal: Movement, procreation, etc. But it also exhibits cat-specific behaviors: It can hunt, meow, see well in the dark etc. So what is a cat? A cat is an animal AND MORE, despite being (technically) a subset of "animal".
      Incidentally, this reading translates to lifetimes as well: If lifetime 'a is a "subtype" of lifetime 'b, that means 'a is valid for 'b OR LONGER (i.e .OR MORE). Or, to be concrete: You have the relationship 'a: 'b. Now imagine that 'a is 'static, so you have 'static: 'b. So your internal monologue could be "the lifetime 'static is 'b OR LONGER". Is that correct? Yep, that's correct, since 'static is the longest lifetime. So it all checks out.
      It's probably for the best if you try not to get too hung up on the "sub" bit in "subtype". While it is correct (not all animals are cats, so therefore the set of cats is a subset of the set of animals), it's just… not really all that useful here.
      I guess this is the one bit where non-native speakers have an easier time than native speakers, because it's easier for them to disassociate the word from the meaning of its constituent parts. :)

  • @veetaha
    @veetaha 3 ปีที่แล้ว

    Hey, thanks for the stream, it was a very useful recap about variance for me.

  • @flipbit03
    @flipbit03 3 ปีที่แล้ว +1

    Do you use VIM or NVIM? How do we get Rust to autocomplete like that on your setup? I want to run away from VSCODE.
    If you have it documented somewhere it'd be great. Thanks in advance!

  • @bytenommer
    @bytenommer 2 ปีที่แล้ว

    Really great video! I feel like I almost understand things now. I'm still confused about one point though. At 1:06:25, it is explained that the compiler is able to shorten the borrow of x because mutable references are covariant in their lifetimes. But previously in the video covariance was used in the opposite direction to justify substituting a *longer* lifetime to a lifetime parameter. Why does covariance now allow substituting a *shorter* lifetime to the borrow?

  • @VladimirGuguev
    @VladimirGuguev 3 ปีที่แล้ว +1

    Thanks for the great material!One question though, even after re-watching I can’t seem to find the place where the second part of the &mut T invarience in T is discussed. You explained why it’s not covariant (you can’t shove that less useful type in) but didn’t mention why wouldn’t you able to assign a more useful type (e.g. &’static str) to a less useful reference (&’a str).

  • @leolin652
    @leolin652 8 หลายเดือนก่อน

    Thank you for teaching and sharing 👍👍👍

  • @muhammaddavatgar4973
    @muhammaddavatgar4973 3 ปีที่แล้ว

    thank you for your time

  • @baburmakhmudov6373
    @baburmakhmudov6373 3 ปีที่แล้ว +1

    Thanks Jon, as always amazingly scrupulous and detailed explanation!

  • @speedstyle.
    @speedstyle. 11 หลายเดือนก่อน

    For `&'a &'b T`, could you use the `&'a` after `'b` ends as long as you don't _dereference_ the inner one? Like the stuff in the drop check video

  • @jocketf3083
    @jocketf3083 3 ปีที่แล้ว +1

    Thanks! These videos are a constant stream of "Aha!" moments.

  • @Moriadin
    @Moriadin หลายเดือนก่อน

    Great video. Thank you!

  • @guavavodka
    @guavavodka 6 หลายเดือนก่อน

    i lol'd when he saved and the test he moved below went back to the top

  • @Nesdac-k1l
    @Nesdac-k1l 10 หลายเดือนก่อน

    great video as always

  • @Lado93
    @Lado93 2 หลายเดือนก่อน

    1:20:00 this hack to satisfy compiler are pretty crazy

  • @dagoberttrump9290
    @dagoberttrump9290 6 หลายเดือนก่อน

    are you using neovim or just vim? What plugins do you have?

  • @naturallyinterested7569
    @naturallyinterested7569 3 ปีที่แล้ว

    Hello! I have a small question about the drop check at around 1:20. Why doesn't the compiler move the drop to the end of the shortened lifetime instead of just ending the lifetime and dropping at the end of the scope?

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +2

      Because Rust's semantics are to drop at the end of scope, and that's something programmers can easily reason about. If the borrow checker determined when exactly something is dropped, it'd be very hard for a programmer to know exactly when the destructor runs, which may be unfortunate for drop implementations that, say, release a lock.

  • @mageprometheus
    @mageprometheus 2 ปีที่แล้ว

    No wonder it's taken years to get this into the compiler. It's so hard to think about.

  • @rorisjack1218
    @rorisjack1218 3 ปีที่แล้ว

    another awesome video :8
    any chance you could tell us what your keyboard is?

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว

      Thanks! My keyboard is a Mistel Barocco MD600 v2 split mechanical keyboard with Cherry MX Clear Switches :)

  • @dimitardimitrov3421
    @dimitardimitrov3421 3 ปีที่แล้ว

    Great video, much appreciated! Also I’m really sorry for the annoying question which you probably get a lot, but what is the programming font that you’re using?

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +1

      Glad to hear it! The font is Noto Sans Mono :)

  • @unique1o1-g5h
    @unique1o1-g5h 3 ปีที่แล้ว

    at 1:17:22 why does the compiler allow that code? since the implicit drop will be called on `z` and it runs the Drop code for type Vec? which may access `x`? Can anyone explain?

  • @Rene-tu3fc
    @Rene-tu3fc 3 ปีที่แล้ว +2

    I have no excuses for allocating strings everywhere now :(

  • @Mr8lacklp
    @Mr8lacklp 3 ปีที่แล้ว

    This feels very similar to the LSP. Would that be a good model for it?

  • @LeandroCoutinho
    @LeandroCoutinho 3 ปีที่แล้ว

    I ran his first example with cargo 1.50.0-nightly (a3c2627fb 2020-12-14) and no error for me ... it worked.

    • @LeandroCoutinho
      @LeandroCoutinho 3 ปีที่แล้ว +1

      Actually I have one thing different in the function declaration:
      pub fn strtok &'a str {

  • @xrafter
    @xrafter 3 ปีที่แล้ว

    Does droping a reference does anything ?
    Since i think it implement the Copy trait and it will give an error ..
    Edit : droping a mutable refrence is possible since it doesn't implement the Copy trait .

  • @Zaniahiononzenbei
    @Zaniahiononzenbei ปีที่แล้ว

    I'm 40-ish minutes in, and im curious if it would be helpful to teach this purely with the operations you could perform with ordinals? It seems like that's all this is, the wording might be specific to types here, but the concepts come from ordinals.

  • @kaktoffel2193
    @kaktoffel2193 3 ปีที่แล้ว

    I'd describe the variances in turn of some java method.
    With cat and animal class
    If you can take any animal as parameter, a cat will do as it is an animal (covariance)
    If it returns a cat, you cant replace it with animal as not any animal is a cat(contravariance)
    If it cannot be changed at all its invariant
    (correct me if i messed up, thats from somewhere at the back of my head)

    • @kaktoffel2193
      @kaktoffel2193 3 ปีที่แล้ว

      Therefore in java parameter covariance is allowed, contravariance isnt, but for return types its the other way around. Kind od you are allowed to specify, but are not allowed to return something more general.

    • @kaktoffel2193
      @kaktoffel2193 3 ปีที่แล้ว

      Think of it as: it requires more conditions is a subtype

  • @davidrempel433
    @davidrempel433 9 หลายเดือนก่อน

    What helps me remember is vim:vi

  • @tiktak7004
    @tiktak7004 3 ปีที่แล้ว

    Now I understand it a little bit better 🤣

  • @adamodimattia
    @adamodimattia 2 ปีที่แล้ว

    I'm pronouncing it like "car", because in my understanding it is from "character" so it should be "k" but often in my head when I see "char" I hear "ch" like in "cherry" XD

  • @timglabisch6767
    @timglabisch6767 3 ปีที่แล้ว

    thanks!

  • @spguy7559
    @spguy7559 3 ปีที่แล้ว

    i wish your next videos being large font-size . 3 times :)

  • @Lexikon00
    @Lexikon00 3 ปีที่แล้ว

    I still don't understand contravariance properly. Why is it okay to pass a 'short lifetime to 'static in a Fn(&'static _)?

    • @vikramfugro3886
      @vikramfugro3886 3 ปีที่แล้ว

      No, that's not possible. who said that? This would break the covariance. It is ok to pass a Fn(&'a T) where Fn(&'static T) is expected, which is contravariance. &'static < &'a T and Fn(&'a T) < Fn(&'static T).

    • @Lexikon00
      @Lexikon00 3 ปีที่แล้ว

      @@vikramfugro3886 this code is valid:
      fn a(_: &str) { }
      let func: fn(&'static str) = a;
      I spent some time to think about it and it makes sense now or at least I can reason about it.

    • @vikramfugro3886
      @vikramfugro3886 3 ปีที่แล้ว

      @@Lexikon00 Yes, it's valid. But that's not what you said in your first comment.

  • @hmmmyessssssss7270
    @hmmmyessssssss7270 3 ปีที่แล้ว

    TIL ddg has a !rust bang

  • @megumin4625
    @megumin4625 3 ปีที่แล้ว +1

    80% of that went over my head oof

  • @Asrashas
    @Asrashas 3 ปีที่แล้ว

    Port tmux :V
    I'm quite interested in how it actually works, but usually don't have the energy to try and understand it from the source myself.
    So you porting it might help me a lot since you explain things really well. But it's may be too complex if you want to stick to a 6h stream. I dunno

  • @RuslanKovtun
    @RuslanKovtun 3 ปีที่แล้ว

    Have you described somewhere your vim configuration?

  • @aikorsky
    @aikorsky 3 ปีที่แล้ว +1

    Great video, thanks!
    In the last part you didn't mention, that one can also play with a phantom lifetime variance using, say, `PhantomData` to enforce invariance.
    Side note: here is one interesting application of invariant lifetimes: www.reddit.com/r/rust/comments/2s2etw/leveraging_the_type_system_to_elide_bounds_checks

  • @lewdwig
    @lewdwig 3 ปีที่แล้ว

    Reading through the page on variance again, I’m fairly certain at this point that your explanation of what “&muts being invariant in T” means was incorrect. Invariance in T only applies to types with higher-rank trait bounds. And since you didn’t actually introduce any types with HRTBs, your explanation must have been incorrect. Or at least incomplete. Either way I think I am now more confused than before I watched. 😀

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +1

      I don't think that's true? &'a mut T is covariant in 'a, but invariant in T, which is exactly what we explore in the example we go through that covers &'a mut &'b str.

    • @lewdwig
      @lewdwig 3 ปีที่แล้ว

      @@jonhoo ohhhhh I see. Thanks.

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +1

      @@lewdwig Oops, sorry, got that backwards. It's covariant in 'a and invariant in T. Edited. The point still stands :)

  • @simonfarre4907
    @simonfarre4907 3 ปีที่แล้ว

    I watched this yesterday, and something was off to me intuitively about the strtok function. I was thinking "why is he using 'a and 'b here? Because the returned string reference, will have it's lifetime be bound by the parameter string reference that's passed in", and so I removed the 'a entirely, and surely I was right.
    It was utterly confusing to see strtok(s: &'a mut &'b str, delim: char) -> &'b str because the 'a is saying nothing here really, especially to novices who just want to use the programming language and get real gritty with these details later on. What you should write, in order to not confuse people is:
    strtok &'a str
    Or is this just new rust where that works in? Because that's the way I was taught Rust and understood it from the book "Programming Rust". Or is it something about the video that I have misunderstood?

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +2

      I cover how you would actually write this towards the end. I agree you wouldn't normally write in both lifetimes, but that's not really the point of the video. Rather, I'm trying to explain why it's important that the lifetimes are *different*, which is easiest to explain if they're named. Even if you elide some lifetimes, there are still lifetimes associated with those references :)

  • @himanshugoyal2658
    @himanshugoyal2658 3 ปีที่แล้ว

    Hi, Can you send me userChrome.css for placing tabs at the bottom instead of the top in firefox. Thanks in advance.

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +1

      My entire configuration is already on GitHub:github.com/jonhoo/configs :)

    • @himanshugoyal2658
      @himanshugoyal2658 3 ปีที่แล้ว

      @@jonhoo Thank you. Can you once make a video on some of your configurations in spare time. It will helpful for people like me to know new tools and customization.

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +5

      You mean like this one? th-cam.com/video/ycMiMDHopNc/w-d-xo.html :)

  • @charlz-darvin
    @charlz-darvin 3 ปีที่แล้ว +2

    Why just not add a second lifetime? It's hard to watch the stream when you know how to fix all the problems.
    fn strtok(s: &'a mut &'b str, delimeter: char) -> Option

    • @jonhoo
      @jonhoo  3 ปีที่แล้ว +11

      Yes, but the whole point of the video is to explain why the second lifetime is needed.

    • @rwantare1
      @rwantare1 3 ปีที่แล้ว +2

      1:02:44 addresses this comment

    • @1vader
      @1vader 3 ปีที่แล้ว +3

      ​@@jonhoo IMO it still doesn't quite work as a motivating example. There doesn't seem to be a reason why the lifetimes should be the same in the first place and why that would work even if we didn't know anything about variance and lifetime subtyping. It's kind of obvious that this would lead to issues if we want to strtok a 'static str because it forces the mutable reference to be 'static as well. I feel like you'd first have to know about variance and lifetime subtyping already in order to assume it might work in the first place and then you learn about invariance as the reason why it actually doesn't. But without that knowledge, you'd already assume it doesn't work. And intuitively, the lifetimes are completely unrelated so it only makes sense to separate them.

    • @CarrotCakeMake
      @CarrotCakeMake 3 ปีที่แล้ว

      Was thinking the same thing as Чарльз Дарвин
      . Even if it compiled an ran with only 1 lifetime, it would still be wrong.

  • @idk-ms6oc
    @idk-ms6oc 2 ปีที่แล้ว +2

    fn it_works() {
    let mut x = "Hello World.";
    let token1 = strtok(&mut x, ' ');
    assert_eq!(token1, "Hello");
    assert_eq!(x, "World.");
    }
    This code is working fine with rust 1.60 compiler.

    • @che5ari
      @che5ari ปีที่แล้ว

      What's the signature of your `strtok` function?

    • @lll_Death_lll
      @lll_Death_lll 3 วันที่ผ่านมา

      @@che5ari Didn't finish watching the video, but this signature works:
      fn strtok &'a str

  • @damoon_az2465
    @damoon_az2465 7 หลายเดือนก่อน

    Thanks!