19 | | ||ImmutableList ||interface, providing get(BigInteger) and size() and being Iterable || |
20 | | ||AbstractImmutableList ||Abstract superclass with default iterator() implementation, toString and get(long) || |
21 | | ||JoinedList ||Joins multiple ImmutableLists into one. || |
22 | | ||MapList ||Maps a function over the input list. || |
23 | | ||MapThreadList ||Maps a 2-arg function over 2 lists.|| |
24 | | ||RandomIntegers||A list of pseudo-random numbers. List size is restricted to powers of 2.|| |
25 | | ||Outer ||Maps an input list into a list containing all possible combinations with one element from each of the provided lists.|| |
26 | | ||AbstractPermutations ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list.|| |
27 | | ||PermutationsOrderedWithoutReturn ||Maps input list into list of all permutations of the input list, when drawing N without return.|| |
28 | | ||PermutationsWithoutReturn ||Maps input list into list of all permutations of the input list, when drawn all without return. || |
29 | | ||PermutationsWithReturn||Maps the input list into list of all permutations of the input list, when drawn all with return.|| |
30 | | ||Range||A list of all values from low to high with given step size|| |
31 | | ||RangeInt||As Range, but with BigInteger values.|| |
32 | | ||Shuffle||A list of all values of the input list, but shuffled to random order|| |
33 | | ||Tuples||Maps two input lists into a list of tuples.|| |
34 | | ||SubList||A sublist of a given list. The selected elements are indicated with a binary code, with 1 indicating a selected element.|| |
35 | | ||SubLists||A list of all sublists of size k of the given list.|| |
36 | | ||Partitionings||The set of all possible partitionings - all possible ways to split the set into non-empty groups.|| |
| 19 | ||{{{ImmutableList}}} ||interface, providing get(BigInteger) and size() and being Iterable || |
| 20 | ||{{{AbstractImmutableList}}} ||Abstract superclass with default iterator() implementation, toString and get(long) || |
| 21 | ||{{{JoinedList}}} ||Joins multiple ImmutableLists into one. || |
| 22 | ||{{{MapList}}} ||Maps a function over the input list. || |
| 23 | ||{{{MapThreadList}}} ||Maps a 2-arg function over 2 lists.|| |
| 24 | ||{{{RandomIntegers}}}||A list of pseudo-random numbers. List size is restricted to powers of 2.|| |
| 25 | ||{{{Outer}}} ||Maps an input list into a list containing all possible combinations with one element from each of the provided lists.|| |
| 26 | ||{{{AbstractPermutations}}} ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list.|| |
| 27 | ||{{{PermutationsOrderedWithoutReturn}}} ||Maps input list into list of all permutations of the input list, when drawing N without return.|| |
| 28 | ||{{{PermutationsWithoutReturn}}} ||Maps input list into list of all permutations of the input list, when drawn all without return. || |
| 29 | ||{{{PermutationsWithReturn}}}||Maps the input list into list of all permutations of the input list, when drawn all with return.|| |
| 30 | ||{{{Range}}}||A list of all values from low to high with given step size|| |
| 31 | ||{{{RangeInt}}}||As Range, but with BigInteger values.|| |
| 32 | ||{{{Shuffle}}}||A list of all values of the input list, but shuffled to random order|| |
| 33 | ||{{{Tuples}}}||Maps two input lists into a list of tuples.|| |
| 34 | ||{{{SubList}}}||A sublist of a given list. The selected elements are indicated with a binary code, with 1 indicating a selected element.|| |
| 35 | ||{{{SubLists}}}||A list of all sublists of size k of the given list.|| |
| 36 | ||{{{Partitionings}}}||The set of all possible partitionings - all possible ways to split the set into non-empty groups. Warning: This list is huge, || |