Is this code readable enough or shall I ask the de...
# announcements
h
Is this code readable enough or shall I ask the dev to create meaningful variable name (e.g. use values instead of v) ?
Copy code
fun contains(test: String): Boolean {
                    return values().any { v -> v.name == test }
                }