KotlinQuickReference icon indicating copy to clipboard operation
KotlinQuickReference copied to clipboard

Source code and text for the Kotlin Quick Reference book

Results 17 KotlinQuickReference issues
Sort by recently updated
recently updated
newest added

Add a chapter on Strings, including converting a list/array to a String: ```` val nums = listOf(1,2,3,4,5) > nums.joinToString() 1, 2, 3, 4, 5 > nums.joinToString( separator = ", ",...

enhancement

Need to discuss visibility modifiers (public/private/etc.) in regards to classes and class members. Either a standalone chapter, or coverage of the modifiers in the current lessons. Modifiers are: - private...

enhancement

Need some coverage of `as` and `as?`, probably as a separate chapter (at least initially).

enhancement

Add a few examples of how to create and use ranges.

enhancement

I haven’t looked into this at all, but it would be nice if we could control/improve the appearance of the PDF format. For example, I prefer the formatting of the...

enhancement

Need one or more chapters on interacting with Java.

enhancement

Need more coverage on collections and nullability.

enhancement

Need a chapter to demonstrate sealed classes.

enhancement

Need a chapter that shows examples of how to use Coroutines.

enhancement

Need a chapter on how to write functions that take functions as input parameters.

enhancement