We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Code
val countriesList = mutableListOf( Country(name = "USA", isDemocracy = true), Country(name = "Australia", isDemocracy = true), Country(name = "Russia", isDemocracy = false), Country(name = "England", isDemocracy = true), Country(name = "North Korea", isDemocracy = false) ) fun main(args: Array<String>) { val output = countriesList.all { it.isDemocracy } println("Result-> $output") }
Output
Result-> false