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

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1
Dependencies base (>=4.7 && <5), contravariant [details]
License MIT
Copyright 2018 Typeclass Consulting, LLC
Author Chris Martin
Maintainer Chris Martin, Julie Moronuki
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 2018-09-24T03:38:13Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 950 total (12 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 2018-09-24 [all 1 reports]

Readme for assoc-list-0.1.0.0

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