“Kotlin -Filterkarte nach Wert” Code-Antworten

Kotlin -Filterkarte nach Schlüssel

val studentsMap = mapOf(101 to "Asha", 102 to "John", 103 to "Afra", 104 to "Kyle")
   val filteredMap = studentsMap.filter { (key, _) -> (key < 103)}
   
Smoggy Snail

Kotlin -Filterkarte nach Wert

val studentsMap = mapOf(101 to "Asha", 102 to "John", 103 to "Afra", 104 to "Kyle")
   val filteredMap = studentsMap.filter { (_, value) -> values.endsWith("a)}
   
Smoggy Snail

Kotlin -Kartenfilter

val studentsMap = mapOf(101 to "Asha", 102 to "John", 103 to "Afra", 104 to "Kyle")
   val filteredMap = studentsMap.filter { (_, value) -> value.startsWith("A")}
   
Smoggy Snail

Ähnliche Antworten wie “Kotlin -Filterkarte nach Wert”

Fragen ähnlich wie “Kotlin -Filterkarte nach Wert”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen