Map module:Data

Finite Maps (lazy interface)

This module re-exports the value lazy Data.Map.Lazy API. The Map k v type represents a finite map (sometimes called a dictionary) from keys of type k to values of type v. A Map is strict in its keys but lazy in its values. The functions in Data.Map.Strict are careful to force values before installing them in a Map. This is usually more efficient in cases where laziness is not essential. The functions in this module do not do so. When deciding if this is the correct data structure to use, consider:
  • If you are using Int keys, you will get much better performance for most operations using Data.IntMap.Lazy.
  • If you don't care about ordering, consider using Data.HashMap.Lazy from the unordered-containers package instead.
For a walkthrough of the most commonly used functions see the maps introduction. This module is intended to be imported qualified, to avoid name clashes with Prelude functions, e.g.
import Data.Map (Map)
import qualified Data.Map as Map
Note that the implementation is generally left-biased. Functions that take two maps as arguments and combine them, such as union and intersection, prefer the values in the first argument to those in the second.

Warning

The size of a Map must not exceed maxBound :: Int. Violation of this condition is not detected and if the size limit is exceeded, its behaviour is undefined.

Implementation

The implementation of Map is based on size balanced binary trees (or trees of bounded balance) as described by: Bounds for union, intersection, and difference are as given by

Performance information

The time complexity is given for each operation in big-O notation, with <math> referring to the number of entries in the map. Operations like lookup, insert, and delete take <math> time. Binary set operations like union and intersection take <math> time, where <math> and <math> are the sizes of the smaller and larger input maps respectively.
A Map from keys k to values a.
Invariant preserving version of Map from the containers packages, suitable for use with Uniplate. Use toMap to construct values, and fromMap to deconstruct values.
Instances to convert between Map and association list. Copyright (C) 2009-2011 John Goerzen jgoerzen@complete.org All rights reserved. For license and copyright information, see the file LICENSE
Map a type level function over a Row.
This module defines finite maps where the key and value types are parameterized by an arbitrary kind. Some code was adapted from containers.
The abstract type of a Map. Its interface is a suitable subset of IntMap.
Bijections via strict maps.
A mapping from keys to values. The keys in a map needs to be an instance of the Key typeclass. Instances are already provided for many common element types. Map implements Foldable, Monoid, etc so many common operations such as foldr to reduce the structure with a right fold, length to get the number of key/value pairs in the dictionary, null to test whether the map is empty, and (<>) to join two maps together are available. To convert to other dictionary types see fromMap below. (this is a thin wrapper around unordered-containers's HashMap, but if you use the conversion functions to extract the key/value pairs in a list the list will be ordered according to the keys' Ord instance)
Patches of this type consist only of insertions (including overwrites) and deletions.
Utilities for mapping or transforming Exprs.