“as” keyword Kotlin
1. Overview In this article, we will discuss the “as” keyword Kotlin with few examples. 2. Unsafe cast as operator Suppose you want to convert… Read More »“as” keyword Kotlin
1. Overview In this article, we will discuss the “as” keyword Kotlin with few examples. 2. Unsafe cast as operator Suppose you want to convert… Read More »“as” keyword Kotlin
1. Overview In this article, we will discuss the Kotlin forEach list function used in collections. 2. forEach If you want to do any action… Read More »Kotlin forEach list
1. Overview In this article, we will discuss about Interface or class delegation using “by” keyword in Kotlin. 2. Interface or Class Delegation Delegation pattern… Read More »Kotlin “by” with the delegation
1. Overview In this short article, we’ll introduce Kotlin collection functions find and findLast. These functions work with arrays, lists, and any iterable. 2. Find… Read More »Kotlin find and findLast
1. Overview In this article, we are going to discuss equality in Kotlin. In Kotlin there are two types of equality: Structural equality (==) – To… Read More »Equality in Kotlin