Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 762 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 762 Bytes

Kotlin Lambdas

This repo contains code snippets useful for understanding Kotlin lambdas.

Tutorials

Examples

Kotlin Lambda Example

students
    .filter { it.passing && it.averageGrade > 3.5 }     // Only passing students with high GPAs
    .sortedByDescending { it.averageGrade }             // Starting from ones with best grades
    .take(10)                                           // Take top 10
    .sortedWith(compareBy({ it.surname }, { it.name })) // Sort by surname and then name