15 | | || ImmutableList || interface, providing get(BigInteger) and size() and being Iterable || |
16 | | || AbstractImmutableList || abstract superclass with default iterator() implementation, toString and get(long) || |
17 | | || JoinedList || Joins 2 immutablelists into one. || |
18 | | || MapList || Maps a function over the input list || |
19 | | || MapThreadList || Maps a 2-arg function over 2 lists || |
20 | | || Outer || maps an input list into a list containing all possible combinations with one element from each of the provided lists|| |
21 | | || AbstractPermutations ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list|| |
22 | | || PermutationsOrderedWithoutReturn ||Maps input list into list of all permutations of the input list, when drawing without return.|| |
| 15 | ||ImmutableList || interface, providing get(BigInteger) and size() and being Iterable || |
| 16 | ||AbstractImmutableList || abstract superclass with default iterator() implementation, toString and get(long) || |
| 17 | ||JoinedList || Joins 2 immutablelists into one. || |
| 18 | ||MapList || Maps a function over the input list || |
| 19 | ||MapThreadList || Maps a 2-arg function over 2 lists || |
| 20 | ||Outer || maps an input list into a list containing all possible combinations with one element from each of the provided lists|| |
| 21 | ||AbstractPermutations ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list|| |
| 22 | ||PermutationsOrderedWithoutReturn ||Maps input list into list of all permutations of the input list, when drawing N without return.|| |
| 23 | ||PermutationsWithoutReturn.java || Maps input list into list of all permutations of the input list, when drawn all without return || |