trent
11/11/2018, 3:08 AMgildor
11/11/2018, 8:38 AMtrent
11/11/2018, 8:47 AMgildor
11/11/2018, 9:25 AMursus
11/11/2018, 2:05 PMgildor
11/11/2018, 2:18 PMarekolek
11/12/2018, 9:21 AMarekolek
11/12/2018, 9:22 AMgildor
11/12/2018, 9:23 AMarekolek
11/12/2018, 9:23 AMgildor
11/12/2018, 9:37 AMgildor
11/12/2018, 9:38 AMgildor
11/12/2018, 9:41 AMObservableSource
argument is Observer
and return value is Unit
Function
argument is Throwable
and return value is ObservableSource
So syntax .onErrorResumeNext { Observable.just(2) }
works for both of themgildor
11/12/2018, 9:45 AMfun foo(l: (String) -> Unit) {}
fun foo(l: (Int) -> String) {}
foo {} // Overload resolution ambiguity
arekolek
11/12/2018, 9:50 AMgildor
11/12/2018, 9:53 AMgildor
11/12/2018, 9:54 AMzipWith
work properly with new type inference, so RxJava2 API now much more useful from Kotlin without RxKotlinursus
11/12/2018, 4:20 PMarekolek
11/12/2018, 4:55 PMtasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
freeCompilerArgs = ["-XXLanguage:+NewInference"]
}
}