Mastering Kotlin Coroutines – Part 2
This is the part 2 of Mastering Kotlin Coroutines. In the previous article we have learned about some basic concept about Kotlin Coroutines, If you haven't read that yet then…
0 Comments
This is the part 2 of Mastering Kotlin Coroutines. In the previous article we have learned about some basic concept about Kotlin Coroutines, If you haven't read that yet then…
Both lateinit and lazy are features in Kotlin used to delay the initialization of properties, but they serve different purposes and have different characteristics. Let's discuss each: ateinit: Purpose: lateinit…
In Kotlin, an inline function is a function modifier that suggests to the compiler to inline the function's code at the call site, instead of invoking the function as a…
Why we compare Sealed and Enum Classes in Kotlin. Are these really related ? Answer is YES. Enums and sealed classes are related in the sense that they both provide…