Map (higher-order function)

This is an old revision of this page, as edited by Gwern (talk | contribs) at 18:21, 10 February 2007 (Optimizations: «"optimizations" → "optimizations", "Maps can be" → "Map functions can and often are"»). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In many programming languages, map is the name of a higher-order function that applies a given function to a sequence of elements (such as a list) and returns a sequence of results. They are examples of both catamorphisms and anamorphisms.

For example, if we define a function square as follows:

square x = x * x

Then calling (map square [1,2,3,4,5]) will return [1,4,9,16,25].

Map itself may be defined recursively as:

map f [] = []
map f (x:xs) = f x : map f xs

Language comparison

The map function is especially common in functional programming languages, but some high-level procedural languages support it as well, and in others it may be defined. Common Lisp provides a whole family of map-like functions. The one that corresponds to the behavior described here is called mapcar. In C++'s Standard Template Library, the map function is called transform.

Optimizations

The mathematical basis of maps allow for a number of optimizations. If one has map f . map g ('.' is function application; map f (map g xs) is equivalent) then it is the same as the simpler map (f . g); this particular simplification and optimization is a "map fusion". Map functions can and often are defined in terms of a fold such as foldr, which means one can do a "map-fold fusion": f z . map g is equivalent to foldr (f . g) z.

Haskell's Functor class

In the Haskell programming language, map is generalized to a polymorphic function called fmap using the Functor type class. For every Functor instance, fmap must be defined such that it obeys the Functor laws:

  • fmap id = id (identity)
  • fmap (f . g) = fmap f . fmap g (composition)

See also