Hopp til hovedinnhold

Innhold om Kotlin

Totalt 53 innlegg

Side 3 av 4

Lists vs. Sequences

Kotlin
Artikkel (3 min)
Fra Øyvind Midtbø
23.12.2019

The Kotlin library comes with several container types. Two of these are List and Sequence. At the first glance these two look quite similar, but we will look at the differences in this article.

The ins and outs of Kotlin

Kotlin
Artikkel (13 min)
Fra Jørund Amsen
22.12.2019

Wonder why a MutableList<Cat> isn't a subtype of MutableList<Animal>? Ever seen the "in" and "out" modifiers in Kotlin and wondered what they do? Let's find out!

Receivers

Kotlin
Artikkel (4 min)
Fra Vegard Veiset
21.12.2019

Going from Java to Kotlin

Kotlin
Artikkel (10 min)
Fra Øyvind Hagen
20.12.2019

We used to have a pure Java application. Then we decided to add some Kotlin code to it, just to try it out. Now there is almost no Java code left. How did that come about? Read on!

Streamlining your functions with Named and Default Arguments

Kotlin
Artikkel (5 min)
Fra Sondre Larsen Ovrid
19.12.2019

As developers, we spend a considerable amount of time declaring and invoking functions when writing software. Kotlin provides several features that can boost your productivity when working with functions. In this post we'll take a closer look at two of these features; Named Arguments and Default Arguments, and how we might use them to make our Christmas preparations more carefree!

On wavelength with lambdas

Kotlin
Artikkel (4 min)
Fra Vegard Veiset
18.12.2019

Typesafe Error Handling in Kotlin

Kotlin
Artikkel (9 min)
Fra Fredrik Løberg
17.12.2019

Overhead from calling? Not with inline!

Kotlin
Artikkel (6 min)
Fra Thomas Oddsund
16.12.2019

On the JVM, calling a function or instantiating a class will always incur an overhead, unless the JVM runtime performs some magic. At least, that's how it used to be before Kotlin introduced the inline keyword. This article will give you a quick introduction to this fantastic keyword, and how it can help you!

When we need a concrete generic

Kotlin
Artikkel (3 min)
Fra Thomas Oddsund
15.12.2019

While using Java or Kotlin, have you ever needed the actual type of the type parameter in a generic function? Meet reified!

Coroutines channels🔥 and flow❄️

Kotlin
Artikkel (5 min)
Fra Vetle Bu Solgård
14.12.2019

Disecting the very important details of coroutines

Kotlin
Artikkel (8 min)
Fra Vetle Bu Solgård
13.12.2019

Coroutines intro

Kotlin
Artikkel (3 min)
Fra Vetle Bu Solgård
12.12.2019

Making games with Kotlin!

Kotlin
Artikkel (8 min)
Fra Vegard Veiset
11.12.2019

It’s in the small things

Kotlin
Artikkel (2 min)
Fra Herman Møyner Lund
10.12.2019

Extension functions

Kotlin
Artikkel (3 min)
Fra Yrjan Fraschetti
09.12.2019

An extension functions is, as the name implies, a function that extends an existing class. The function does this without actually modifying it!