Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for backingMap (0.14 sec)

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

          int expectedRows, int expectedCellsPerRow) {
        checkNonnegative(expectedCellsPerRow, "expectedCellsPerRow");
        Map<R, Map<C, V>> backingMap = Maps.newLinkedHashMapWithExpectedSize(expectedRows);
        return new HashBasedTable<>(backingMap, new Factory<C, V>(expectedCellsPerRow));
      }
    
      /**
       * Creates a {@code HashBasedTable} with the same mappings as the specified table.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jan 24 17:47:51 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/HashBasedTable.java

          int expectedRows, int expectedCellsPerRow) {
        checkNonnegative(expectedCellsPerRow, "expectedCellsPerRow");
        Map<R, Map<C, V>> backingMap = Maps.newLinkedHashMapWithExpectedSize(expectedRows);
        return new HashBasedTable<>(backingMap, new Factory<C, V>(expectedCellsPerRow));
      }
    
      /**
       * Creates a {@code HashBasedTable} with the same mappings as the specified table.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jan 24 17:47:51 GMT 2022
    - 4K bytes
    - Viewed (0)
Back to top