FSharpAux icon indicating copy to clipboard operation
FSharpAux copied to clipboard

Add `.map4` functions for modules `Seq`, `List`, and `Array`

Open omaus opened this issue 1 year ago • 1 comments

  • Implementations for Seq.map4, List.map4, and Array.map4
  • Unit tests for all aforementioned functions
  • Closes #27

omaus avatar Mar 26 '23 17:03 omaus

please change signatures from (mapping : 'T -> 'T -> 'T -> 'T -> 'U) (array1 : 'T []) (array2 : 'T []) (array3 : 'T []) (array4 : 'T []) to (mapping : 'T1 -> 'T2 -> 'T3 -> 'T4 -> 'U) (array1 : 'T1 []) (array2 : 'T2 []) (array3 : 'T3 []) (array4 : 'T4 []) and resolve merge conflicts

kMutagene avatar Oct 16 '23 07:10 kMutagene