dstarcev
value
T
override fun <T> get(key: String): T? { val value = map[key] ?: return null if (value is T) { return value } return null }