Kotlin
-
Kotlin / IntelliJ quick hint: Operator navigation
This is just a quick hint if you are programming Kotlin with IntelliJ: In IntelliJ you can ctrl-click on operators…
Read More » -
Kotlin infix functions
What are infix functions? If you are using Kotlin chances are high you already used infix functions. Maybe without knowing…
Read More » -
Join Two Lists in Kotlin
A quick programming guide to join two lists in kotlin. Joining two lists or ArrayList can be done using List…
Read More » -
Advanced Creation of Hamcrest Matchers in Kotlin
This article is a rewrite of an older one done in Java. This one is done in Kotlin instead. Intro…
Read More » -
How to Make Your Own Hamcrest Matchers in Kotlin
This article is a rewrite of an older one done in Java. This one is done in Kotlin instead. Intro…
Read More » -
Project reactor – de-structuring a Tuple
Tuples are simple data structures that hold a fixed set of items, each of a different data type. Project Reactor…
Read More » -
Kotlin Data Classes: Why, What and How?
In this post on Kotlin’s data classes, we’ll take a look at how data classes are better than regular Java…
Read More » -
Implementing multiple interfaces through delegation
In Kotlin, a class can implement multiple interfaces. This is common knowledge. A class can also use delegation to implement…
Read More » -
The potential traps in Kotlin’s Data Classes
The aim of this post is not to point out some massive flaws in Kotlin’s design of data classes and…
Read More »