Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testPermutationSetTwoElements (0.33 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            Collections2.permutations(Collections.<Integer>singletonList(1)).iterator();
        assertNextPermutation(newArrayList(1), permutations);
        assertNoMorePermutations(permutations);
      }
    
      public void testPermutationSetTwoElements() {
        Iterator<List<Integer>> permutations = Collections2.permutations(newArrayList(1, 2)).iterator();
        assertNextPermutation(newArrayList(1, 2), permutations);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/Collections2Test.java

            Collections2.permutations(Collections.<Integer>singletonList(1)).iterator();
        assertNextPermutation(newArrayList(1), permutations);
        assertNoMorePermutations(permutations);
      }
    
      public void testPermutationSetTwoElements() {
        Iterator<List<Integer>> permutations = Collections2.permutations(newArrayList(1, 2)).iterator();
        assertNextPermutation(newArrayList(1, 2), permutations);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 20.1K bytes
    - Click Count (0)
Back to Top