assoc-list: Association lists (lists of tuples)

[ data, library, mit ] [ Propose Tags ]

An association list conceptually signifies a mapping, but is represented as a list (of key-value pairs).

This package defines an association list as a type alias for a list of tuples.

type AssocList a b = [(a, b)]

[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1
Change log changelog.md
Dependencies base (>=4.9 && <4.17), contravariant (>=1.5 && <1.6) [details]
License MIT
Copyright 2018-2021 Mission Valley Software LLC
Author Chris Martin
Maintainer Chris Martin, Julie Moronuki
Revised Revision 1 made by chris_martin at 2022-03-14T20:11:39Z
Category Data
Home page https://github.com/typeclasses/assoc-list
Bug tracker https://github.com/typeclasses/assoc-list/issues
Source repo head: git clone https://github.com/typeclasses/assoc-list
Uploaded by chris_martin at 2021-08-11T02:48:25Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 938 total (8 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-08-11 [all 1 reports]

Readme for assoc-list-0.1.0.1

[back to package description]

assoc-list

An association list conceptually signifies a mapping, but is represented as a list (of key-value pairs).

This package defines an association list as a type alias for a list of tuples.

type AssocList a b = [(a, b)]