Published inThe DevOps CornerJenkins and BuddyA CI/CD (continuous integration/continuous deployment) practice is common-place nowadays. More and more dev teams are convinced and…Dec 9, 2020Dec 9, 2020
Kotlin’s when is switch, on steroidsKotlin doesn’t have a switch statement, but it has the when construct. It looks a lot like the switch but it packs a lot more punch. In its…Sep 28, 2018Sep 28, 2018
In Kotlin, every Exception is uncheckedKotlin’s approach to exception is similar to Java. Somewhat. It uses the try-catch-finally, just like in Java. So, your knowledge about how…Sep 28, 2018Sep 28, 2018
Reified generics in KotlinLet’s deal with the meaning of reify first. It means to make something real, and the reason we’re using reify and generics on the same…Sep 28, 20181Sep 28, 20181