Re: [elixir-core:10431] Provide an example for Enumerable suspension?

2021-09-04 Thread José Valim
Zip uses suspension, so zipping it with any other enumerable will help test those scenarios. Use Stream.zip + Enum.take to test the combination of both suspension + halt. Improvements to the enumerable docs are welcome. :) On Sat, Sep 4, 2021 at 6:47 PM w...@resilia.nl wrote: > > Hi all! > > I

[elixir-core:10431] Provide an example for Enumerable suspension?

2021-09-04 Thread w...@resilia.nl
Hi all! I was recently building a datastructure for which I wanted to implement Enumerable. The basic implementation is very straightforward, because of the very helpful documentation in the `Enum` and `Enumerable` modules. Chapeau ! I then used a