```interface Validator<in T> { fun valid...
# russian
c
Copy code
interface Validator<in T> {
    fun valid(value: T): String?
}