Changes between Version 12 and Version 13 of immutablelist


Ignore:
Timestamp:
07/03/21 11:41:08 (3 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • immutablelist

    v12 v13  
    1919||ImmutableList || interface, providing get(BigInteger) and size() and being Iterable ||
    2020||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.||
    2626||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.||
    2929||Range||A list of all values from low to high with given step size||
    3030||ShuffledList||A list of all values of the input list, but shuffled to random order||
    3131||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.||
    3333||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.||