Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for safeContainsKey (0.11 seconds)

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

          return false;
        }
        for (Map<C, V> map : backingMap.values()) {
          if (safeContainsKey(map, columnKey)) {
            return true;
          }
        }
        return false;
      }
    
      @Override
      public boolean containsRow(@Nullable Object rowKey) {
        return rowKey != null && safeContainsKey(backingMap, rowKey);
      }
    
      @Override
      public boolean containsValue(@Nullable Object value) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/StandardTable.java

          return false;
        }
        for (Map<C, V> map : backingMap.values()) {
          if (safeContainsKey(map, columnKey)) {
            return true;
          }
        }
        return false;
      }
    
      @Override
      public boolean containsRow(@Nullable Object rowKey) {
        return rowKey != null && safeContainsKey(backingMap, rowKey);
      }
    
      @Override
      public boolean containsValue(@Nullable Object value) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 29.4K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new AsMapEntries();
        }
    
        // The following methods are included for performance.
    
        @Override
        public boolean containsKey(@Nullable Object key) {
          return Maps.safeContainsKey(submap, key);
        }
    
        @Override
        public @Nullable Collection<V> get(@Nullable Object key) {
          Collection<V> collection = safeGet(submap, key);
          if (collection == null) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new AsMapEntries();
        }
    
        // The following methods are included for performance.
    
        @Override
        public boolean containsKey(@Nullable Object key) {
          return Maps.safeContainsKey(submap, key);
        }
    
        @Override
        public @Nullable Collection<V> get(@Nullable Object key) {
          Collection<V> collection = safeGet(submap, key);
          if (collection == null) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Aug 12 15:51:57 GMT 2025
    - 46.9K bytes
    - Click Count (0)
Back to Top