Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for SynchronizedSortedMap (0.09 seconds)

  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);
        assertThat(((SynchronizedSortedMap<String, Integer>) headMap).mutex).isSameInstanceAs(mutex);
      }
    
      public void testHeadMap_k_b() {
        NavigableMap<String, Integer> map = create();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

          SortedMap<K, V> sortedMap, @Nullable 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, @Nullable Object mutex) {
          super(delegate, mutex);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 53K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Synchronized.java

          SortedMap<K, V> sortedMap, @Nullable 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, @Nullable Object mutex) {
          super(delegate, mutex);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Aug 08 15:11:10 GMT 2025
    - 56.9K bytes
    - Click Count (0)
Back to Top