Home
last modified time | relevance | path

Searched defs:computeIfAbsent (Results 1 – 5 of 5) sorted by relevance

/external/kotlinx.serialization/core/jvmMain/src/kotlinx/serialization/internal/
DCaching.kt211 …inline fun computeIfAbsent(types: List<KType>, producer: () -> KSerializer<T>?): Result<KSerialize… in computeIfAbsent() method in kotlinx.serialization.internal.ParametrizedCacheEntry
/external/aws-sdk-java-v2/utils/src/main/java/software/amazon/awssdk/utils/
DAttributeMap.java235 public <T> T computeIfAbsent(Key<T> key, Supplier<T> valueIfAbsent) { in computeIfAbsent() method in AttributeMap.Builder
DUnmodifiableMapOfLists.java143 public List<U> computeIfAbsent(T key, Function<? super T, ? extends List<U>> mappingFunction) { in computeIfAbsent() method in UnmodifiableMapOfLists
/external/robolectric/resources/src/main/java/org/robolectric/res/android/
DResTable.java3190 static <K, V> V computeIfAbsent(Map<K, V> map, K key, Function<K, V> vFunction) { in computeIfAbsent() method
/external/guava/guava/src/com/google/common/collect/
DImmutableMap.java868 public final V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) { in computeIfAbsent() method in ImmutableMap