| H A D | KeyValueCachedProperty.kt | 9 private val container: WeakHashMap<TKey, TValue> constant in expo.modules.devmenu.KeyValueCachedPropertyProxy 13 if (!container.containsKey(key)) { in get() 14 container[key] = loader(key) in get() 17 return container[key]!! in get() 22 private val container = WeakHashMap<TKey, TValue>() constant in expo.modules.devmenu.KeyValueCachedProperty 25 return KeyValueCachedPropertyProxy(loader, container) in getValue()
|