Closed hallee closed 1 year ago
From https://github.com/ReactiveX/RxSwift/pull/2508#discussion_r1181269601, I was wrong; the where Element == Any constraint is required to help the type system automatically infer the element type of the tuple. Without that constraint, combineLatest has this issue:
where Element == Any
Added back the constraint and also added tests to verify.
From https://github.com/ReactiveX/RxSwift/pull/2508#discussion_r1181269601, I was wrong; the
where Element == Any
constraint is required to help the type system automatically infer the element type of the tuple. Without that constraint, combineLatest has this issue:Added back the constraint and also added tests to verify.