ReactiveCocoa / ReactiveSwift

Streams of values over time

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it planned to add count argument to `collect(every:on:skipEmpty:discardWhenCompleted:)`?

ChaseChoi opened this issue · comments

I'm trying to find a built-in operator similar to bufferWithTimeOrCount(timeSpan, count, [scheduler]) in RxJS, but I only found collect(every:on:skipEmpty:discardWhenCompleted:) and collect(count:). Should I create my own operator?