- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ObjectCountLinkedHashMap (0.77 seconds)
-
android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java
@GwtCompatible @NullMarked final class ObjectCountLinkedHashMap<K extends @Nullable Object> extends ObjectCountHashMap<K> { /** Creates an empty {@code ObjectCountLinkedHashMap} instance. */ static <K extends @Nullable Object> ObjectCountLinkedHashMap<K> create() { return new ObjectCountLinkedHashMap<K>(); } /** * Creates a {@code ObjectCountLinkedHashMap} instance, with a high enough "initial capacity" that
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 5.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/LinkedHashMultiset.java
return multiset; } LinkedHashMultiset(int distinctElements) { super(distinctElements); } @Override ObjectCountHashMap<E> newBackingMap(int distinctElements) { return new ObjectCountLinkedHashMap<>(distinctElements); } // TODO(cpovirk): Should we have a serialVersionUID here?
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 2.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableMultiset.java
/** * In the event of a setCount(elem, 0) call, we may need to remove elements, which destroys the * insertion order property of ObjectCountHashMap. In that event, we need to convert to a * ObjectCountLinkedHashMap, but we need to know we did that so we can convert back. */ boolean isLinkedHash = false; /** * Creates a new builder. The returned builder is equivalent to the builder generated by {@linkCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 22.3K bytes - Click Count (0)