Recent Posts

Late initialization

2 minute read

Sometimes, we want to initialize the properties of the class after it is created, but in a separate member function instead of using lazy

Property Delegation Tools

1 minute read

The standard library contains special property delegation properties. Map is one of the few types in Kotlin library. Each property identifier becomes a Strin...

Property Delegation

2 minute read

In Kotlin, we could connect a property to a delegate with the by keyword:

Operator Overloading

3 minute read

Back in the school while I was learning C++, operator overloading was one of the topics in academic. But in practice, I rarely overload operators. However, i...

Generics in Kotlin

7 minute read

I love template in C++ in the olden day. In many good languages that I had chance to come across, such as TypeScript, Java (it was added later) and Kotlin, t...