Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rowComparator (0.04 sec)

  1. android/guava/src/com/google/common/collect/RegularImmutableTable.java

        }
      }
    
      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);
        if (rowComparator != null || columnComparator != null) {
          /*
           * This sorting logic leads to a cellSet() ordering that may not be expected and that isn't
    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