Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unsafeDelegate (0.26 sec)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableMap.java

                return result;
              }
            });
      }
    
      @Override
      ImmutableSet<K> createKeySet() {
        return ImmutableSet.unsafeDelegate(delegate.keySet());
      }
    
      @Override
      ImmutableCollection<V> createValues() {
        return ImmutableCollection.unsafeDelegate(delegate.values());
      }
    
      @Override
      public int size() {
        return delegate.size();
      }
    
      @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 24 16:03:45 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

        do {
          delegate.add(checkNotNull(elements.next()));
        } while (elements.hasNext());
    
        return unsafeDelegate(delegate);
      }
    
      // Factory methods that skips the null checks on elements, only used when
      // the elements are known to be non-null.
      static <E> ImmutableSet<E> unsafeDelegate(Set<E> delegate) {
        switch (delegate.size()) {
          case 0:
            return of();
          case 1:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 23 18:43:40 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableCollection.java

       * where this collection's elements end.
       */
      int internalArrayEnd() {
        throw new UnsupportedOperationException();
      }
    
      static <E> ImmutableCollection<E> unsafeDelegate(Collection<E> delegate) {
        return new ForwardingImmutableCollection<E>(delegate);
      }
    
      boolean isPartialView() {
        return false;
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 23 18:43:40 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top