About

Metadata

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

  • Lottery factor: 0

Links

Installation

Readme

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