mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
4 lines
98 B
Plaintext
Vendored
4 lines
98 B
Plaintext
Vendored
arrayListOf(1, 5, 7).map { it * 2 } // RESULT: 2
|
|
.filter { it < 10 }
|
|
.find { it == 2 }
|