Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SetBuilderImpl (0.17 sec)

  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;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 35.4K bytes
    - Viewed (0)
Back to top