ReactiveSwift
ReactiveSwift copied to clipboard
Streams of values over time
This is probably all sorts of wrong (especially the `@unchecked Sendable`). It also fails to compile with no more errors, so I don't know what else I need to fix...
I'm trying to find a built-in operator similar to [bufferWithTimeOrCount(timeSpan, count, [scheduler])](https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/bufferwithtimeorcount.js) in RxJS, but I only found `collect(every:on:skipEmpty:discardWhenCompleted:)` and `collect(count:)`. Should I create my own operator?
Hi I have a problem with XCode 14 about bitcode. XCode tells me to wait for an update for the package, I have already updated ReactiveCocoa and ReactiveSwift to the...
I haven’t tried the new betas yet, but I imagine the prevalence of `@MainActor` in `iOS 15` will bring issues to current uses of `ReactiveSwift`. Specifically, I imagine you won’t...
This is a proposal to add `asyncStream` and `asyncThrowingStream` in order to bridge into [Swift Concurrency](https://docs.swift.org/swift-book/LanguageGuide/Concurrency.html). I find this especially useful for writing non-blocking async tests. A couple of things...
due to migrating my existing application from Xcode-11 to Xcode-12. I am facing following issue issue in ReactiveSwift. completed = Signal.merge(cancelled, finalized) 1. Cannot assign value of type 'Signal Value,...
Hello, just ran into this with SPM : https://developer.apple.com/documentation/Xcode-Release-Notes/xcode-13-release-notes > Swift libraries depending on Combine may fail to build for targets including armv7 and i386 architectures. (82183186, 82189214) > >...
Hello everyone, after I created a SignalProducer, Disposable was weakly referenced, but after the SignalProducer was executed, Disposable was also printed, but why is the Disposable status incorrect? ``` class...
This feature is needed for RAC-TCA https://github.com/trading-point/reactiveswift-composable-architecture/issues/23 This will enable framework users to use their custom types as `SignalProducer` In my case, I need to create `@dynamicMemberLookup` `SignalProducer` to use...