In kotlin we have one word concept of infix function which is actually the Member function or the extension function in case of Kotlin. So …
Android
Now you can know kotlin Companion Object and Static Keyword
In other programming language like Java and C#, when we want to call the method and want to access the members of a class then …
All you need to know about kotlin Null Safety Operator
What is Null Safety Operator? In kotlin by default the null value is not supported to avoids the null pointer exception we have a lot …
Check this kotlin Scope Functions and it’s type now
These scope functions provide the simplest way to offer temporary scope to the thing under some circumstances where specific operations will be applied to the …
Check this kotlin Extension and Inline functions now
Kotlin Extension Function Kotlin provide the feature of add new functionality to a class without use of the concept of inheritance This feature is called …
Know about kotlin data class and it’s functions
We sometimes create classes to hold some data in it. These classes have, some functions which are drived from the data. This type of class …
Know about kotlin sealed classes with example
Sealed classes Sealed classes in Kotlin are another new concept we didn’t have in Java, and open another new world of possibilities.where an object or …
Know about kotlin Enum and Sealed Classes now
Overview While developing an application, there may arise a situation where we want a variable to have a value out of a given set of allowed values …
Kotlin variable and it’s data type
What is variable? Variable is a container type where you store your data. It has a name by which you can access this data.The data …
Android architecture pattern you need to know now
Why we use Android Architecture Patterns? When you start working with Android you end up writing most of the core business logic in fragments or …