Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for forCells (0.03 sec)

  1. 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(
                        immutableCell('a', 1, "blah"),
                        immutableCell('b', 2, "blah"),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableTable.java

        @Override
        @J2ktIncompatible
        @GwtIncompatible
            Object writeReplace() {
          return super.writeReplace();
        }
      }
    
      static <R, C, V> RegularImmutableTable<R, C, V> forCells(
          List<Cell<R, C, V>> cells,
          @Nullable Comparator<? super R> rowComparator,
          @Nullable Comparator<? super C> columnComparator) {
        checkNotNull(cells);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 08 13:05:15 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top