Recent Posts

Extension function is a magic

less than 1 minute read

This is one of my most favorite features of Kotlin - Extension Function. Imagine this. You are using a 3rd party library - String that have all the things th...

Property Accessor

less than 1 minute read

If you are new to Kotlin, there is something in property accessor that you might find it interesting. There are two methods - get() for getter and set() for ...

Map in Kotlin

less than 1 minute read

So we have seen the wonderful Set. Next, we are going to look at Map.

Why package

less than 1 minute read

A fundamental principle in programming is the acronym DRY: Don't Repeat Yourself.

Set

less than 1 minute read

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.

Infix notation in function

less than 1 minute read

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 ...

Variable Argument Lists

less than 1 minute read

Do you know what vararg keyword is? Using this vararg, you can define a function that takes any number of argument.