Shorten Long Type Names with Kotlin Type Aliases
Type Aliasing is one of the many features of the Kotlin programming language. It allows you to give an alternative name to a type. typealias WordList = List<String> The official Kotlin docs suggests using Type Aliases for long generic types typealias Room = Pair<String, List<User>>… Read More »Shorten Long Type Names with Kotlin Type Aliases