Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for byCharAt (0.06 seconds)

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

        }
      }
    
      private static Ordering<String> byCharAt(int index) {
        return Ordering.<Character>natural().onResultOf(CharAtFunction.values()[index]);
      }
    
      public void testCompound_static() {
        Comparator<String> comparator =
            Ordering.compound(
                ImmutableList.of(
                    byCharAt(0), byCharAt(1), byCharAt(2), byCharAt(3), byCharAt(4), byCharAt(5)));
        testComparator(
            comparator,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

        }
      }
    
      private static Ordering<String> byCharAt(int index) {
        return Ordering.<Character>natural().onResultOf(CharAtFunction.values()[index]);
      }
    
      public void testCompound_static() {
        Comparator<String> comparator =
            Ordering.compound(
                ImmutableList.of(
                    byCharAt(0), byCharAt(1), byCharAt(2), byCharAt(3), byCharAt(4), byCharAt(5)));
        testComparator(
            comparator,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 43.2K bytes
    - Click Count (0)
Back to Top