@hackage list-zip-def0.1.0.0

Provides zips where the combining doesn't stop premature, but instead uses default elements.

list-zip-def

Provides zip functions that use a given default value, whenever one list is exhausted, but not all.

Prelude> import Data.List.Zip
Prelude Data.List.Zip> zipDef 0 0 [1, 2, 3] [1]
[(1,1)(2,0)(3,0)]