Changes between Version 12 and Version 13 of immutablelist
- Timestamp:
- 07/03/21 11:41:08 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
immutablelist
v12 v13 19 19 ||ImmutableList || interface, providing get(BigInteger) and size() and being Iterable || 20 20 ||AbstractImmutableList || abstract superclass with default iterator() implementation, toString and get(long) || 21 ||JoinedList || Joins 2 immutablelists into one. ||22 ||MapList || Maps a function over the input list ||23 ||MapThreadList || Maps a 2-arg function over 2 lists 24 ||Outer || maps an input list into a list containing all possible combinations with one element from each of the provided lists ||25 ||AbstractPermutations ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list ||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 ||Outer || maps an input list into a list containing all possible combinations with one element from each of the provided lists.|| 25 ||AbstractPermutations ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list.|| 26 26 ||PermutationsOrderedWithoutReturn ||Maps input list into list of all permutations of the input list, when drawing N without return.|| 27 ||PermutationsWithoutReturn || Maps input list into list of all permutations of the input list, when drawn all without return ||28 ||PermutationsWithReturn||Maps the input list into list of all permutations of the input list, when drawn all with return ||27 ||PermutationsWithoutReturn || Maps input list into list of all permutations of the input list, when drawn all without return. || 28 ||PermutationsWithReturn||Maps the input list into list of all permutations of the input list, when drawn all with return.|| 29 29 ||Range||A list of all values from low to high with given step size|| 30 30 ||ShuffledList||A list of all values of the input list, but shuffled to random order|| 31 31 ||Tuples||Maps two input lists into a list of tuples.|| 32 ||SubList||A sublist of a given list. The selected elements are indicated with a binary code, with 1 indicating a selected element ||32 ||SubList||A sublist of a given list. The selected elements are indicated with a binary code, with 1 indicating a selected element.|| 33 33 ||SubLists||A list of all sublists of size k of the given list.|| 34 ||Partitionings||The set of all possible partitionings - all possible ways to split the set into non-empty groups.||