Help | Examples | About | API | Blog | Hackage | Haskell
Concurrently search more than 4911 packages and more than 442752 functions! (Index generated: Mon, 22 Apr 2013 08:31:44 UTC )
Found 245 functions, 0 packages and 31 completions.
Top 15 Modules
Data 245
Top 15 Packages
Data.Map.Map:: module
containers

An efficient implementation of ordered maps from keys to values (dictionaries).

This module re-exports the value lazy Data.Map.Lazy API, plus several deprecated value strict functions. Please note that these functions have different strictness properties than those in Data.Map.Strict: they only evaluate the values inserted into the map. For example, the default value to insertWith' is only evaluated if it's used, i.e. because there's no value for the key already or because the higher-order argument that combines the old and new value uses it.

These modules are intended to be imported qualified, to avoid name clashes with Prelude functions, e.g.

  import qualified Data.Map as Map

The implementation of Map is based on size balanced binary trees (or trees of bounded balance) as described by:

  • Stephen Adams, "Efficient sets: a balancing act", Journal of Functional Programming 3(4):553-562, October 1993, http://www.swiss.ai.mit.edu/~adams/BB/.
  • J. Nievergelt and E.M. Reingold, "Binary search trees of bounded balance", SIAM journal of computing 2(1), March 1973.

Note that the implementation is left-biased -- the elements of a first argument are always preferred to the second, for example in union or insert.

Operation comments contain the operation time complexity in the Big-O notation (http://en.wikipedia.org/wiki/Big_O_notation).

Source
Data.Map.Strict.map:: map
containers

O(n). Map a function over all values in the map.

 map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
Data.Map.Lazy.map:: map
containers

O(n). Map a function over all values in the map.

 map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
Data.Set.map:: (a -> b) -> Set a -> Set b
containers
No description.
Source
Data.IntSet.map:: map
containers
No description.
Data.IntMap.Strict.map:: map
containers

O(n). Map a function over all values in the map.

 map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
Data.IntMap.Lazy.map:: map
containers

O(n). Map a function over all values in the map.

 map (++ "x") (fromList [(5,"a"), (3,"b")]) == fromList [(3, "bx"), (5, "ax")]
Data.Map.Strict.Map:: data
containers

A Map from keys k to values a.

Source
Data.Map.Lazy.Map:: data
containers

A Map from keys k to values a.

Source
Data.IntMap.IntMap:: module
containers

An efficient implementation of maps from integer keys to values (dictionaries).

This module re-exports the value lazy Data.IntMap.Lazy API, plus several deprecated value strict functions. Please note that these functions have different strictness properties than those in Data.IntMap.Strict: they only evaluate the result of the combining function. For example, the default value to insertWith' is only evaluated if the combining function is called and uses it.

These modules are intended to be imported qualified, to avoid name clashes with Prelude functions, e.g.

  import Data.IntMap (IntMap)
  import qualified Data.IntMap as IntMap

The implementation is based on big-endian patricia trees. This data structure performs especially well on binary operations like union and intersection. However, my benchmarks show that it is also (much) faster on insertions and deletions when compared to a generic size-balanced map implementation (see Data.Map).

  • Chris Okasaki and Andy Gill, "Fast Mergeable Integer Maps", Workshop on ML, September 1998, pages 77-86, http://citeseer.ist.psu.edu/okasaki98fast.html
  • D.R. Morrison, "/PATRICIA -- Practical Algorithm To Retrieve Information Coded In Alphanumeric/", Journal of the ACM, 15(4), October 1968, pages 514-534.

Operation comments contain the operation time complexity in the Big-O notation http://en.wikipedia.org/wiki/Big_O_notation. Many operations have a worst-case complexity of O(min(n,W)). This means that the operation can become linear in the number of elements with a maximum of W -- the number of bits in an Int (32 or 64).

Source
Powered by Haskell, HXT, Snap, and
Please send any feedback to hayoo@holumbus.org