Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SynchronizedSortedMap (0.16 sec)

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

      }
    
      public void testHeadMap_K() {
        NavigableMap<String, Integer> map = create();
        SortedMap<String, Integer> headMap = map.headMap("a");
        assertTrue(headMap instanceof SynchronizedSortedMap);
        assertSame(mutex, ((SynchronizedSortedMap<String, Integer>) headMap).mutex);
      }
    
      public void testHeadMap_K_B() {
        NavigableMap<String, Integer> map = create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

          SortedMap<K, V> sortedMap, @CheckForNull Object mutex) {
        return new SynchronizedSortedMap<>(sortedMap, mutex);
      }
    
      static class SynchronizedSortedMap<K extends @Nullable Object, V extends @Nullable Object>
          extends SynchronizedMap<K, V> implements SortedMap<K, V> {
    
        SynchronizedSortedMap(SortedMap<K, V> delegate, @CheckForNull Object mutex) {
          super(delegate, mutex);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Synchronized.java

          SortedMap<K, V> sortedMap, @CheckForNull Object mutex) {
        return new SynchronizedSortedMap<>(sortedMap, mutex);
      }
    
      static class SynchronizedSortedMap<K extends @Nullable Object, V extends @Nullable Object>
          extends SynchronizedMap<K, V> implements SortedMap<K, V> {
    
        SynchronizedSortedMap(SortedMap<K, V> delegate, @CheckForNull Object mutex) {
          super(delegate, mutex);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
Back to top