Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for SetBuilderImpl (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        }
    
        /**
         * Adds e to this SetBuilderImpl, returning the updated result. Only use the returned
         * SetBuilderImpl, since we may switch implementations if e.g. hash flooding is detected.
         */
        abstract SetBuilderImpl<E> add(E e);
    
        /** Adds all the elements from the specified SetBuilderImpl to this SetBuilderImpl. */
        final SetBuilderImpl<E> combine(SetBuilderImpl<E> other) {
          SetBuilderImpl<E> result = this;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Nov 07 16:09:47 GMT 2025
    - 35.3K bytes
    - Click Count (0)
Back to Top