Changes between Version 5 and Version 6 of immutablelist


Ignore:
Timestamp:
10/17/19 16:27:50 (5 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • immutablelist

    v5 v6  
    1313
    1414|| **class**  || **function** ||
    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 ||
    2324
    24