일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Android
- SDUI
- KAKAO
- coroutinescope
- google play console
- java
- 릴리즈 키해시
- hotStream
- Flow
- app-distribution
- cancellationException
- 백준2309
- flowon
- conflate
- collectLatest
- Next Challenge
- Algorithm
- withContext
- Product Flavor
- Advanced LCA
- monotone stack
- Kotlin
- coldStream
- ShapeableImageView
- TOSS 과제
- coroutinecontext
- 백준
- ServerDrivenUI
- coroutine
- 안드로이드
Archives
- Today
- Total
목록Operators (1)
루피도 코딩한다

Intermediate flow operators Basic Operators map : map 내부에서 변경한 데이터를 downStream으로 흘려보냄 filter : 조건에 맞는 것만 남기기 (조건을 술어 혹은 predicate라고 한다) filterNot : 조건에 맞지 않는것만 남기기 Transform Operator transform : stream 수정 (임의의 값을 임의의 횟수만큼 emit 가능) Size-limiting Operators take(n) : 시작지점부터 n개만큼 data를 다 받아들이면 flow 실행 cancle 시키기 takeWhile : 특정 조건을 만족하는 동안만 값을 가져오게 하기. 조건 안맞으면 즉시 실행 취소 drop(n) : 시작부터 n 개만큼 data 버리기 만..
Coroutine
2024. 1. 26. 18:28