indexed-containers: Simple, no-frills indexed lists.

[ bsd3, data-structures, library ] [ Propose Tags ]

If the lengths of your lists are known statically, using indexed lists improves type safety with no runtime overhead.


[Skip to Readme]

Modules

[Index] [Quick Jump]

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
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5) [details]
License BSD-3-Clause
Copyright 2020 Ziyang Liu
Author Ziyang Liu <free@cofree.io>
Maintainer Ziyang Liu <free@cofree.io>
Category Data Structures
Home page https://github.com/zliu41/indexed-containers
Bug tracker https://github.com/zliu41/indexed-containers/issues
Source repo head: git clone https://github.com/zliu41/indexed-containers
Uploaded by zliu41 at 2020-03-02T16:58:28Z
Distributions LTSHaskell:0.1.0.2, Stackage:0.1.0.2
Downloads 934 total (16 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-03-02 [all 1 reports]

Readme for indexed-containers-0.1.0.2

[back to package description]

indexed-containers: simple, no-frills indexed lists.

This library contains lists whose types are indexed by their lengths. The implementation is a simple wrapper around a regular list.

If the lengths of your lists are known statically, using indexed lists improves type safety with no runtime overhead.