Map in Kotlin
So we have seen the wonderful Set. Next, we are going to look at Map.
So we have seen the wonderful Set. Next, we are going to look at Map.
A fundamental principle in programming is the acronym DRY: Don't Repeat Yourself.
In computer science, Set is an interesting abstract data type that stores unique values. It is a collection that allows only one element of each value.
Another Kotlin treasure that I have not known is the ability to write infix notation in function. We use infix notation in most arithmetic operation such as ...
Do you know what vararg keyword is? Using this vararg, you can define a function that takes any number of argument.
A List is a container, which is an object that holds other objects. Containers are also called collections.
Alright. Who here think that testing is optional? Even though some doesn’t write tests, I believe no one will openly say so. Oops. it hurts.
Objects are the foundation for many modern languages, including Kotlin.