amb(_:)
-
RxSwift - amb(_:), switchLatest()에 대해서 알아보자Ray Wenderlich/RxSwift 2020. 2. 10. 22:02
Ch9. Combining operatiors p.191 - p.193RxSwift에는 "Switching" 오퍼레이터라고 불리는 2개의 주요 오퍼레이터가 있다.바로 amb(_:)와 switchLatest()다. 이 오퍼레이터들은 컴바인한 이벤트 또는 여러 시퀀스들 중에서 하나의 시퀀스로 Switch해준다.(원문: They both allow you to produce an observable sequence by switching between the events of the combined or source sequences.)이를 통해 우리는 런타임에 어떤 시퀀스를 사용할 지 결정할 수 있게 된다. amb(_:)amb는 ambiguous의 약자다. let left = PublishSubject()l..