Changes between Version 13 and Version 14 of immutablelist


Ignore:
Timestamp:
08/03/21 11:31:05 (4 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • immutablelist

    v13 v14  
    2222||MapList || Maps a function over the input list. ||
    2323||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.||
    2425||Outer || maps an input list into a list containing all possible combinations with one element from each of the provided lists.||
    2526||AbstractPermutations ||Abstract superclass of all classes that map some input list into a list of all permutations of the input list.||
     
    2829||PermutationsWithReturn||Maps the input list into list of all permutations of the input list, when drawn all with return.||
    2930||Range||A list of all values from low to high with given step size||
    30 ||ShuffledList||A list of all values of the input list, but shuffled to random order||
     31||RangeInt||As Range, but with BigInteger values.||
     32||Shuffle||A list of all values of the input list, but shuffled to random order||
    3133||Tuples||Maps two input lists into a list of tuples.||
    3234||SubList||A sublist of a given list. The selected elements are indicated with a binary code, with 1 indicating a selected element.||