Frank Pepermans

Results 37 comments of Frank Pepermans

@hoc081098 Dunno if we should have both `distinctUnique` and `distinctUniqueBy`, I'd go for the easiest version here, which is `distinctUniqueBy`, wdyt?

Well, this can be looked at from many different angles as always :/ Currently hasValue and hasError just mean: "did emit value/error at a certain point" Maybe we do need...

@brianegan I can't reproduce this issue though? Do you want to internally use where and cast like in the example?

@paulo-coutinho do also check out bloc on pub.dartlang, They are built upon Streams, and meant for state management. You could do the same with streams and rxdart, but will probably...

There's an annoying issue inside the Dart Stream library where a Stream can throw when being subscribed to too early, I'll take a close look asap (we've predominantly encountered this...

Hi there, In Dart `Streams`, you specify whether or not your `subscription` terminates when an `Error` occurs, by default, the `Stream` just keeps going *after* an `Error` is thrown: So...

Tough one! Been thinking about it, and could't decide pro or con. It doesn't help that in Dart, a Stream just can go on after an Error (or not, if...

I like it 👍 I did find an issue with our `concatWith` while looking at this, it is available as a `Stream` operator, but will always yield a single subscription...