Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyIfNecessary (0.04 sec)

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

        }
    
        @VisibleForTesting
        void forceJdk() {
          requireNonNull(impl); // see the comment on the field
          this.impl = new JdkBackedSetBuilderImpl<>(impl);
        }
    
        final void copyIfNecessary() {
          if (forceCopy) {
            copy();
            forceCopy = false;
          }
        }
    
        void copy() {
          requireNonNull(impl); // see the comment on the field
          impl = impl.copy();
    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