zipWith4 -package:base

zipWith4 takes a function which combines four elements, as well as four sequences and returns a sequence of their point-wise combinations, analogous to zipWith.
The zipWith4 function takes a function which combines four elements, as well as four lists and returns a list of their point-wise combination, analogous to zipWith. It is capable of list fusion, but it is restricted to its first list argument and its resulting list.
Like zipWith but for four input vectors If you need even more input vectors, you might write a function yourselve using unfoldrN and viewL.
Just like zipWith, except zip four arrays with a function.
Zip 4 lists using a function
Like zipWith, but works with 4 collections.
zipWith4 takes a function which combines four elements, as well as four sequences and returns a sequence of their point-wise combinations, analogous to zipWith.
Zip four infinite lists with a given function.