
Operator 데이터 스트림을 쉽게 변형하기 위해 Operator를 사용합니다. Collections에서 제공하는 forEach, map 같은 Operator뿐만 아니라 Rx에서 추가적으로 제공하는 debounce, buffer 같은 함수들이 있습니다. https://reactivex.io/documentation/operators.html ReactiveX - Operators Introduction Each language-specific implementation of ReactiveX implements a set of operators. Although there is much overlap between implementations, there are also some operators th..

Reactive Programming 데이터의 흐름을 먼저 정의하고 데이터가 반영되었을 때 연관된 작업이 실행횐다. 즉, 이벤트에 반응하여 프로그램이 동작한다. 어떻게 이벤트를 반응할까? Observer 패턴 (이벤트 처리) Iterator 패턴 (이벤트 처리) Functional 프로그래밍 (이벤트 가공) RxJava https://reactivex.io/intro.html ReactiveX is a library for composing asynchronous and event-based programs by using observable sequences. It extends the observer pattern to support sequences of data and/or events and a..
산술 연산자 main() { int a = 2; int b = 4; print(a + b); print(a - b); print(a * b); print(a / b); print(a % b); // 나머지 연산자 print(a++); // a값을 반환하고 a증가 print(++a); // a증가시키고 증가된 값 반환 print(b--); print(--b); } 대입 연산자 main() { double a = 2.0; double b = 4.0; print(a = b); print(a += b); // a = a + b print(a -= b); print(a *= b); print(a /= b); print(a %= b); } 비교 연산자 main() { double a = 2.0; double b =..
- Total
- Today
- Yesterday
- ConcatAdapter.Config
- ConcatAdapter
- ViewModelProvider
- observable
- 클린코드
- rxjava
- CancellationException
- gradle
- DSL
- 연산자
- Coroutine
- commit
- DART
- 함수
- 코루틴
- isActive
- viewmodel
- Flutter
- Android
- Exception
- ViewModelStoreOwner
- 보이스카우트 규칙
- clean code
- Flowable
- TDD
- Widget
- git
- 클린 코드
- null
- Kotlin
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |