ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | >> List << | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: List
Function: zipWith7
Type: (a -> b -> c -> d -> e -> f -> g -> h) -> [a] -> [b] -> [c] -> [d] -> [e] -> [f] -> [g] -> [h]
Description: makes a list, its elements are calculated from the function and the elements of input lists occuring at the same position in all lists
Related: unzip4, unzip5, unzip6, unzip7, zip4, zip5, zip6, zip7, zipWith4, zipWith5, zipWith6

Example 1

Input: zipWith7 (\a b c d e f g -> (e+f+g)*(a*b + c*d)) [1,2,3,4] [1,2,3] [3,2,1,0] [0,1,2] [6,3,-3] [3,2,5] [1,1,-1]

Output: [10,36,11]