Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for ForwardingSortedSet (0.12 seconds)

  1. android/guava-tests/test/com/google/common/collect/MapsCollectionTest.java

            public boolean apply(Entry<String, String> entry) {
              return entry.getKey() != null && entry.getValue() != null;
            }
          };
    
      private static class NonNavigableSortedSet extends ForwardingSortedSet<String> {
    
        private final SortedSet<String> delegate = Sets.newTreeSet(Ordering.natural());
    
        @Override
        protected SortedSet<String> delegate() {
          return delegate;
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 17:27:14 GMT 2025
    - 32.4K bytes
    - Click Count (0)
Back to Top