Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 43 of 43 for firstEntry (0.06 seconds)

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

        public NavigableMap<K, V2> descendingMap() {
          return transformEntries(fromMap().descendingMap(), transformer);
        }
    
        @Override
        public @Nullable Entry<K, V2> firstEntry() {
          return transformEntry(fromMap().firstEntry());
        }
    
        @Override
        public @Nullable Entry<K, V2> floorEntry(@ParametricNullness K key) {
          return transformEntry(fromMap().floorEntry(key));
        }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 163.5K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/MapsTest.java

        {
          Entry<Integer, String> entry = unmod.higherEntry(2);
          assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four"));
        }
        {
          Entry<Integer, String> entry = unmod.firstEntry();
          assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four"));
        }
        {
          Entry<Integer, String> entry = unmod.lastEntry();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 22:56:33 GMT 2025
    - 62.7K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        {
          Entry<Integer, String> entry = unmod.higherEntry(2);
          assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four"));
        }
        {
          Entry<Integer, String> entry = unmod.firstEntry();
          assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four"));
        }
        {
          Entry<Integer, String> entry = unmod.lastEntry();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 22:56:33 GMT 2025
    - 65K bytes
    - Click Count (0)
Back to Top