RxSwiftExt
RxSwiftExt copied to clipboard
A collection of Rx operators & tools not found in the core RxSwift distribution
`PublishSubject` is not working with `ignoreErrors` function because `ignoreErrors` is synonym of `retry`. But `PublishSubject` can't `retry` by contract cause it's not operation. ```swift let subject = PublishSubject() _ =...
We're trying to figure out a good naming scheme for operators that target a collection of something. For example, like our existing `mapMany` operator. One of the newer ones is...
### Name and description I have a `timer` Observable and I need to pause it with one condition: when it'll resume it'll continue to emit elements from an element, which...
### Description This ticket continues discussion on one of the point form #127. Would appreciate some opinions on what you guys would consider optimal Folder Structure and file-naming for RxSwift...
This continues discussion from #124, but decided it would be better to start a clean one since this is already "Calls to Action". I'm assigning myself as I'd like to...
### Issue Description After updating my Xcode to version 15, I've encountered compile-time errors in multiple places within the codebase of the package. These errors seem to be related to...
### Name and description The latest release 6.2.1 has no built xcframework on the release artifacts like 6.1.0 does.
hi, I use pairwise with BehaviorRelay to listener the userInfo's changes, by compared with old and new, then make some animation. Expected: use pairwise with behaviorRelay, when there is a...