val set: Set<String> = setOf("A", "B", "C", "ABC")
set.contains("B") //Resultado: true set.filter { it.length > 2 } //Resultado: ABC