Marc Reichelt

Results 25 comments of Marc Reichelt

Rough new implementation that works for me: ```dart extension IterableZip on Iterable { Iterable zipWith(Iterable other, V Function(E a, R b) transform) sync* { final it1 = iterator; final it2...

Yep - this works, but unfortunately it also breaks consumer code: ![image](https://user-images.githubusercontent.com/400322/86498367-dcbe9900-bd85-11ea-99ce-6d637dee4cf5.png) The second parameter will now become `dynamic` - which is sad, because every info for Dart to find...

Ok, thanks! Then, at least I'll add some docs to the `zip` method later so people know how to make their code working again :)

@leisim I added an example in the `.zip()` documentation as stated. It's ready to be merged now IMO :-) https://github.com/leisim/dartx/pull/94

I was also trying to configure the configuration cache in our project, and the app versioning plugin was not yet compatible. So we had to move to direct `git describe...

I got it - but I couldn't have done it with some help by @passsy 🎉 Fixed in this PR: #28

And here's a video that it works (and I verified it continues to work on iOS, as expected): https://www.youtube.com/watch?v=5_UtRV8w2ak

@sanni-aubergine I didn't check with https - but if you could reproduce and even patch the problem yourself locally, why not create a PR yourself? ;-)

Hey Christian! Glad you find this project useful. Thanks for the info about the vulnerability, I will see when I can come around to it. Which version(s) of the Docker...

Hey @eugenio1590! This issue has been open for quite a while, and I'm sorry that I didn't respond for so long. I'm trying to figure out what your actual need...