Kotlin return, break, continue Keywords 1. Overview In this tutorial, we’ll discuss the usage of structural jump expressions in Kotlin. Simply put, Kotlin has three structural jump expressions: return, break, continue. In the next sections, we’ll cover their functionalities with and without a label. 2. Labels in Kotlin Any expressions in… Continue Reading kotlin-return-break-continue

Array Processing with Apache Commons Lang 3 1. Overview The Apache Commons Lang 3 library provides support for manipulation of core classes of the Java APIs. This support includes methods for handling strings, numbers, dates, concurrency, object reflection and more. In this quick tutorial, we’ll focus on array processing with… Continue Reading array-processing-commons-lang

Filtering Observables in RxJava 1. Introduction Following the Introduction to RxJava, we’re going to look at the filtering operators. In particular, we’re going to focus on filtering, skipping, time-filtering, and some more advanced filtering operations. 2. Filtering When working with Observable, sometimes it’s useful to select only a subset of… Continue Reading rxjava-filtering