Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for immutableEntry (0.15 sec)

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

            Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o;
            Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey());
            return row != null
                && Collections2.safeContains(
                    row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue()));
          }
          return false;
        }
    
        @Override
        public boolean remove(@CheckForNull Object o) {
          if (o instanceof Cell) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Jul 15 15:41:16 GMT 2021
    - 6.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractTable.java

            Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o;
            Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey());
            return row != null
                && Collections2.safeContains(
                    row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue()));
          }
          return false;
        }
    
        @Override
        public boolean remove(@CheckForNull Object o) {
          if (o instanceof Cell) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Jul 15 15:41:16 GMT 2021
    - 6.1K bytes
    - Viewed (0)
Back to top