I have somewhere a map defined as follows: ``` val...
# announcements
z
I have somewhere a map defined as follows:
Copy code
val MY_MAP = ConcurrentHashMap<Any, Any>()
I try to access it from a generic class, like this:
Copy code
interface MyInterface<D> {
        fun mapTo(value: D) {
            MY_MAP[this] = value
        }
}