Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for forCells (0.19 sec)

  1. guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java

          assertFalse(testInstance.isEmpty());
        }
      }
    
      public void testForCells() {
        assertTrue(RegularImmutableTable.forCells(CELLS) instanceof DenseImmutableTable<?, ?, ?>);
        assertTrue(
            RegularImmutableTable.forCells(
                    ImmutableSet.of(
                        Tables.immutableCell('a', 1, "blah"),
                        Tables.immutableCell('b', 2, "blah"),
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableTable.java

        @J2ktIncompatible // serialization
        @GwtIncompatible // serialization
        Object writeReplace() {
          return super.writeReplace();
        }
      }
    
      static <R, C, V> RegularImmutableTable<R, C, V> forCells(
          List<Cell<R, C, V>> cells,
          @CheckForNull Comparator<? super R> rowComparator,
          @CheckForNull Comparator<? super C> columnComparator) {
        checkNotNull(cells);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java

          assertFalse(testInstance.isEmpty());
        }
      }
    
      public void testForCells() {
        assertTrue(RegularImmutableTable.forCells(CELLS) instanceof DenseImmutableTable<?, ?, ?>);
        assertTrue(
            RegularImmutableTable.forCells(
                    ImmutableSet.of(
                        Tables.immutableCell('a', 1, "blah"),
                        Tables.immutableCell('b', 2, "blah"),
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 6.3K bytes
    - Viewed (0)
Back to top