Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JdkBackedImmutableSet (0.06 sec)

  1. guava/src/com/google/common/collect/JdkBackedImmutableSet.java

     * flooding. This implementation is never used on the GWT client side.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    final class JdkBackedImmutableSet<E> extends IndexedImmutableSet<E> {
      private final Set<?> delegate;
      private final ImmutableList<E> delegateList;
    
      JdkBackedImmutableSet(Set<?> delegate, ImmutableList<E> delegateList) {
        this.delegate = delegate;
        this.delegateList = delegateList;
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 22:23:20 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSet.java

               * populated.
               */
              return of(requireNonNull(dedupedElements[0]));
            default:
              return new JdkBackedImmutableSet<>(
                  delegate, ImmutableList.asImmutableList(dedupedElements, distinct));
          }
        }
      }
    
      private static int estimatedSizeForUnknownDuplication(int inputElementsIncludingAnyDuplicates) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
Back to top