Jul 132 min read(Part - III) Android: Split ViewModel into Delegates with DaggerAndroid: Split ViewModel into Delegates with Dagger
Jan 8, 20221 min readKotlin Coroutines Compatible with Legacy CallbackKotlin Coroutines can transform legacy callback into suspend function which can be called within any Coroutines scope.
Jun 14, 20212 min readComparing Strings having number on Kotlin and SwiftSwift provides a feature of comparing string considering numbers but Kotlin does not provide any in-built feature.
Oct 31, 20201 min readThe use of tailrec keyword in KotlinThe tailrec keyword makes tail recursion more efficient and keeps the function away from StackOverflowError exception. First we need to...