Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- moya
- 공백
- DISPATCH
- reversed
- binder
- weak self
- async
- Custom Class
- hitTest
- input
- MaxHeap
- UIResponder
- 사내배포
- Responder chain
- swift
- URLSession
- readLine
- 전자출입
- Python
- Combine
- AVCaptureSession
- ReactorKit
- vtable
- 입력
- RxSwift
- ios
- BidirectionalCollection
- Asnyc
- delays deallocation
- UserDefaults
Archives
- Today
- Total
목록operator (1)
틈틈히 적어보는 개발 일기
[RxSwift] Chapter 5: Filtering Operators
Chapter 5: Filtering Operators Ignoring operators ignoreElements() next로 방출되는 ‘모든' 이벤트를 무시합니다. 단 Error, Complete는 정상적으로 방출합니다. elementAt(Int) index 위치에 발생하는 이벤트’만’ 방출합니다. filter { … } 클로저 내부에 true인 필터에 대한 이벤트를 방출합니다. skip(Int) Int 만큼의 이벤트를 무시합니다. skip(while: { … }) 클로저 내부에 해당하지 않는 조건이 나올때까지 이벤트를 무시합니다. 조건을 통과한 이후에는 모든 이벤트를 방출합니다. skip(until: ObservableType) 해당되는 ObservableType의 next가 트리거링 되기 전 까..
📱 iOS, Swift/🐉 RxSwift
2022. 6. 8. 16:47