We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xcode 15 M1
private func bindingsStrongify<Event, O, WeakOwner>(_ owner: WeakOwner, _ bindings: @escaping (WeakOwner, O) -> (Bindings<Event>)) -> (O) -> (Bindings<Event>) where WeakOwner: AnyObject { return { [weak owner] state -> Bindings<Event> in guard let strongOwner = owner else { return Bindings(subscriptions: [], events: [Observable<Event>]()) } return bindings(strongOwner, state) } }
The text was updated successfully, but these errors were encountered:
This is a duplicate of issue #66.
Sorry, something went wrong.
private func bindingsStrongify<Event, O, WeakOwner>(_ owner: WeakOwner, _ bindings: https://github.com/escaping (WeakOwner, O) -> (Bindings)) -> (O) -> (Bindings) where WeakOwner: AnyObject { return { [weak owner] state -> Bindings in guard let strongOwner = owner else {
return Bindings(subscriptions: [], events: [Observable<Event>]()) } return bindings(strongOwner, state) }
}
//Add this to Fix it public typealias Observable = RxSwift.Observable
No branches or pull requests
Xcode 15
M1
The text was updated successfully, but these errors were encountered: