ripytide

Results 149 comments of ripytide

I'm a bit confused by the use-case, can you provide an example using concrete types since your example uses generic types but then also does `as` casts so I'm assuming...

That seems like an improvement to me, since this is a user facing error then having an error message is better than nothing. Thought I might make the error message...

From a brief look at the open issues on dotnet-format, built-in XML parsing seems like a key difference too: https://github.com/dotnet/format/issues/647 I think it would go a long way if these...

So you'd like a method called `insert_merge_touching_or_overlapping_if_values_equal()`? Bit of a mouthful, but it sounds like a valid usecase. My one question is why you need to use `cut()` in your...

> You posted the same link twice. Whoops, fixed.

Excellent discussion points. On point 1, this was an unintentional copy-paste error, indeed it makes no sense for `unready()` to return the token it should have been `async fn unready(&mut...

I suppose using GAT tokens means passing tokens to different threads will also be a pain. I wonder if maybe we should go back to the token design as although...

I've updated the top comment again to show both contending designs. > Just out of curiosity, what do you envision e.g. the ConcurrencyLimit service looking like with this interface? With...

Trying out the implementation of `ConcurrencyLimit` also made me realize that the blanket trait aproach of `SimpleService` doesn't work due to conflicting trait implementations that would require specialization. Instead we'd...