KotlinQuickReference
KotlinQuickReference copied to clipboard
Source code and text for the Kotlin Quick Reference book
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 = ", ",...
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...
Need some coverage of `as` and `as?`, probably as a separate chapter (at least initially).
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...
Need a chapter on how to write functions that take functions as input parameters.