@hackage / assoc-listlike

Association lists (list-like collections of tuples)

Latest0.1.0.1

About

Metadata

  • Last updated , by chris_martin
  • License MIT
  • Maintained by: Chris Martin, Julie Moronuki

  • Lottery factor: 0

Links

Installation

Readme

assoc-listlike

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 constraint synonym for a list-like collection of tuples, using the ListLike type class from the ListLike package.

type AssocList l a b = ListLike l (a, b)