티스토리 뷰
728x90
반응형
reduce는 모든 이벤트들을 다 더한 총합을 방출하고
scan은 하나씩 더할 때마다 증가된 sum을 각각 방출한다
[ 1 ] Reduce
Observable.of(1,2,3,4,5).reduce(0,accumulator: +)
.subscribe(onNext: {
print($0)
}).disposed(by: disposeBag)
// 출력값
15
[ 2 ] Scan
Observable.of(1,2,3,4,5).scan(0, accumulator: +)
.subscribe(onNext: {
print($0)
}).disposed(by: disposeBag)
// 출력값
1
3
6
10
15
Reference
반응형
'🍏 > RxSwift' 카테고리의 다른 글
[RxSwift-ControlProperty] ControlProperty의 orEmpty (0) | 2019.05.27 |
---|---|
[RxSwift-Operator] withLatestFrom과 combineLatest (0) | 2019.04.29 |
[RxSwift-Operator] Of와 From (0) | 2019.04.22 |
[RxSwift-Operator] Map과 FlatMap (1) | 2019.04.22 |
[RxSwift-Operator] FlatMap과 FlatMapLatest (0) | 2019.04.22 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Dart Factory
- Watch App for iOS App vs Watch App
- flutter deep link
- Django Heroku Scheduler
- Flutter Spacer
- PencilKit
- METAL
- 플러터 얼럿
- Python Type Hint
- SerializerMethodField
- ribs
- github actions
- ipad multitasking
- flutter 앱 출시
- cocoapod
- Flutter 로딩
- 구글 Geocoding API
- Django Firebase Cloud Messaging
- Django FCM
- Flutter Clipboard
- flutter build mode
- Sketch 누끼
- Flutter Text Gradient
- 장고 Custom Management Command
- flutter dynamic link
- DRF APIException
- 플러터 싱글톤
- drf custom error
- 장고 URL querystring
- Flutter getter setter
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
글 보관함