Any, Unit and Nothing
This article explain basic difference between Any, Unit and Nothing from kotlin language. Any Any is by default the superclass of all the classes and has 3 functions: equals, hashCode and toStrin...
This article explain basic difference between Any, Unit and Nothing from kotlin language. Any Any is by default the superclass of all the classes and has 3 functions: equals, hashCode and toStrin...
In this article, you’ll see how to model value object particularly in kotlin. Imagine we want to improve below model: class Customer(id: UUID, email: String,..) class Order(id: UUID,..) I had ...
Couple of weeks ago, I was looking for very simple way to create web server. I found http4k which is a lightweight but fully-featured HTTP toolkit written in pure Kotlin that enables the serving an...