CombineCommunity / rxswift-to-combine-cheatsheet

RxSwift to Apple’s Combine Cheat Sheet
https://medium.com/gett-engineering/rxswift-to-apples-combine-cheat-sheet-e9ce32b14c5b
MIT License
2.04k stars 125 forks source link

RxSwift's buffer ≠ Combine's buffer #31

Open fwrs opened 1 year ago

fwrs commented 1 year ago

The cheatsheet currently suggests that RxSwift's buffer op is replaceable by the identically named buffer op in Combine. But that's not true and in actuality you'd be looking for Combine's [collect](https://developer.apple.com/documentation/combine/publisher/collect()) with a grouping strategy. Could this be fixed?