list-zip-def: Provides zips where the combining doesn't stop premature, but instead uses default elements.

[ data, library, public-domain ] [ Propose Tags ]

Modules

[Last Documentation]

  • Data
    • List
      • Data.List.Zip

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3
Dependencies base (>=4.7 && <4.9) [details]
License LicenseRef-PublicDomain
Author Moritz Bruder
Maintainer muesli4@gmail.com
Category Data
Source repo head: git clone https://github.com/muesli4/list-zip-def.git -b master
Uploaded by muesli4 at 2015-11-30T19:52:52Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2435 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-11-29 [all 2 reports]

Readme for list-zip-def-0.1.0.0

[back to package description]

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)]