Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PermutationIterator (0.06 sec)

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

        public String toString() {
          return "permutations(" + inputList + ")";
        }
      }
    
      private static final class PermutationIterator<E> extends AbstractIterator<List<E>> {
        final List<E> list;
        final int[] c;
        final int[] o;
        int j;
    
        PermutationIterator(List<E> list) {
          this.list = new ArrayList<>(list);
          int n = list.size();
          c = new int[n];
          o = new int[n];
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22.6K bytes
    - Viewed (0)
Back to top