BAEL-2217 forEach inside forEach in Kotlin: add flatMap example

This commit is contained in:
mikr 2019-03-09 17:18:23 +01:00
parent 8893730201
commit 8cf72e2e7e
1 changed files with 26 additions and 0 deletions

View File

@ -5,6 +5,15 @@ class Country(val name : String, val cities : List<City>)
class City(val name : String, val streets : List<String>)
fun City.getStreetsWithCityName() : List<String> {
return streets.map { "$name, $it" }.toList()
}
fun Country.getCitiesWithCountryName() : List<String> {
return cities.flatMap { it.getStreetsWithCityName() }
.map { "$name, $it" }
}
class World {
private val streetsOfAmsterdam = listOf("Herengracht", "Prinsengracht")
@ -45,6 +54,19 @@ class World {
}
}
}
fun allStreetsFlatMap() {
countries.flatMap { it.cities}
.flatMap { it.streets}
.forEach { println(it) }
}
fun allFlatMapTable() {
countries.flatMap { it.getCitiesWithCountryName() }
.forEach { println(it) }
}
}
fun main(args : Array<String>) {
@ -56,6 +78,10 @@ fun main(args : Array<String>) {
world.allNested()
world.allTable()
world.allStreetsFlatMap()
world.allFlatMapTable()
}