Iterators and Ranges: Comparing C++ to D to Rust - Barry Revzin - [CppNow 2021]

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

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

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

    It would be interesting to see how the c++ design would look like in D or Rust

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

    really good presentation
    you managed to stay everyone's friend, while stating all disadvantages
    loved it

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

      Everyone but Java, that is ;-)

    • @AK-vx4dy
      @AK-vx4dy ปีที่แล้ว +1

      I'm not sure... i'm not an expert but i see Rust misrepresented or presented from outdated or partial information

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

      ​@@AK-vx4dywhat's outdated? Seems to me he presented the fundamentals of Rust's library design, which certainly don't change every year.

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

    An excellent overview. One starts to appreciate the decoupled design of the STL iterator only while going outside of the trivial.
    It would have been nice to have the simple read-once model as a compatible-to the extent it could be-option in the standard library, but it's not hard to maintain such a thing outside of it.

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

    Thanks, Barry. This is a very enlightening presentation.

  • @AK-vx4dy
    @AK-vx4dy ปีที่แล้ว +1

    I'm new to Rust but i saw rotate and sort also some examples can be implemented differently for example instead of separte find_if and erase this can be one function.
    Also when was example with drop, compiler can optimize whole like is done in C# Linq

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

    Maybe this is whats wrong with C++. Trying to have all these edges cases in the std.

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

    i love languages comparisons like this

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

    The find_if example where he reuse it to remove an array can simply be implemented by filter isn't it? groupBy can also be implemented by pairing zip . mapG where mapG will max X => Same(X) if its the same and X => Div(X) if its a divider, i.e. that its different than the previous element. This is in fact a lazy iterator and therefore doesn't require its consumer to perform memory allocation if unneeded.

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

    Is it just me, or did other people want to actually SEE the darn iterators in practice? just something simple, like a pipeline of operations -- taking 10 ints -> sorting them -> finding prime numbers -> mulltipllying those by 100. I would have loved to have seen how each of the languages achieved this, and how it looked syntacticallly. But this talk, while interesting, got too much into the weeds and i feell like a simple 1 slilde overview showing the alternative APIs in practice woulld have been a much better way to go.

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

    I'm wondering where Java's Streams fall into. I dislike Java's implementation of Iterators and usually avoid them, but using Java Streams has always been a great way to get complex logic down into a single line of code. It also allows for sorting e.g.

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

      aren't java streams are just functional wrappers around the actual iterator model of java ?

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

      This exact topic is discussed in a newer version of this talk: th-cam.com/video/95uT0RhMGwA/w-d-xo.html. Actually non trivial and interesting

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

    Is that some C++ code under the comment "// D" in 28:04 ?

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

    This is incorrect.
    Rust chose the "iterator" model as presented for a very good reason - you can't return a pointer-like object to the value without explicitly reasoning about the value's ownership. A value cannot be owned by a container and an unrestricted iterator at the same time so in Rust the iterator either takes ownership over the value or it borrows it. In the former case the container no longer has the value and we cannot read it from there again, in the latter case, we're bound by Rust's mutation XOR aliasing guaranty.
    C++ simply doesn't protect you here and that's why iterator invalidation exists.
    Having said that, this isn't impossible as the OP claims since you can always "uplift" this model into the reader model like so:
    wrap your source(s) with an iterator that yields a pointer-like object to the values instead of the values themselves. These extended iterators would then be able to provide these additional functions in a composable way, **when needed**. Of course in Rust this is more involved since we need to account for the ownership semantics described above which I imagine would be a case-by-case endeavour.
    In C++ terms: the next method would return "Optional" (maybe a Weak in rust? depends on the use-case)

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

      Nothing you said establishes that the presenter is incorrect. You merely added context for the motivations in the initial paragraph, and provided a non-generic workaround in the second. The fundamental tradeoffs are still there.

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

    1:01:50 if there are any Rust people watching, I'd be curious if there is a different pattern around this limitation. I use iterators/ranges/algos heavily in C++ and it is one of the reasons why I have stayed away from Rust, but maybe I'm missing something.

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

      As ordered lists of elements are usually stored in contiguous memory (array, `Vec`), you can most of the time get a mut slice (equivalent of dynamic-extent `std::span`), which has (or could have) these algorithms. Not sure what the proper solution would be for non-contiguous memory.

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

      The itertools crate (see the docs) has a huge number of iterator adaptors extending the ones in the standard library, and I didn't see anything that is actually impossible to implement in a library here.
      * binary group_by: it doesn't seem to be available, but it is possible to implement. A library implementation would probably hold on to a copy of the previous element, but you would use it on an iterator which yields references anyway, so the copy is cheap.
      * adjacent_find: tuple_windows() returns adjacent pairs, which you can then find() for equality.
      * adjacent_difference: tuple_windows() and then map()
      * sort: sorted(). There isn't much special about this iterator, it just collects into a vector and sorts that. The example with sorting one iterator using a key from a different iterator is indeed not possible without allocating some space for the result, but it's less painful to have a vector of pairs in rust so this doesn't come up much.
      * slide: tuple_windows(). Note that this does copy the elements in order to return them multiple times, but you can add an adapter to turn the values into references so that the copy is cheap.
      * search: you should really be doing this over vector or string, where the algorithms are way better, but for arbitrary iterators you can still do it by using searching windows() on the iterator
      * mismatch: zip() and then find(|x, y| x != y)
      * find_end: same as search, but on windows().rev()
      * lower_bound, upper_bound, equal_range, binary_search: these are inherently random access, so you can only do them on vectors in the standard library, but there are crates that offer these functions given a random access trait
      * prev_permutation, next_permutation: permutations() and permutations().rev()
      * stable_partition: this is inherently a collection operation, not an iterator operation, but partition() does this
      * rotate: I don't understand how this can be considered an iterator operation at all. You can of course rotate a vector but doing this on a generator function is nonsense. Still, you can do it via it.skip(n).chain(it.take(n)) if you can copy the iterator

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

      ​@@digama0Yes but I think most of those iterators don't meet the zero overhead principle, in other words they are posible to implement, but you have to save states or do extra operations

    • @speedstyle.
      @speedstyle. ปีที่แล้ว +1

      When he says "we have to keep a copy of this item to compare, unlike in C++ where we can just keep another iterator on the range" - what is the actual overhead here? You can keep the _reference_ returned by Iterator until the next iteration, it's just a pointer. C++ iterators are usually also an abstraction of pointers.
      Lots of the methods requiring random access (permutations, binary search, rotate) I would consider container methods rather than iterator adaptors. In particular you mostly use them on contiguous memory (spans/slices), where these things _are_ implemented.
      If this isn't the case then you may have to implement them yourself, but could you provide an example in C++ of where this would actually be used? You can implement the range interfaces for more unusual types, but usually without random access, and often with different performance considerations than the std algorithms.

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

    At 39:31, the slide is just false. Iterator in rust only have the associated type `Item` which is the equivalent of `value_type`, but neither `reference`, nor `difference_type`. And the `next()` function returns `Optional`, and not `Optional`. EDIT: since rust references are basically the equivalent of `not_null`, you can create an iterator over a reference, since `not_null` is just a value.

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

    It seem to me, that in dranges filter you just could call 'prime' in constructor. Thus, neither other 'prime' calls are needed, nor do 'isPrimed'.
    Or did I misunderstand something?

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

      views tend to be lazy and trivial to initialize, so you tend to avoid doing anything until they're called

  • @Popart-xh2fd
    @Popart-xh2fd ปีที่แล้ว +1

    This is clearly NOT and explanation of the Iterator Pattern!

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

    ...none of this syntax is D

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

      It's c++

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

      18:17 "if we were to implement it in c++"