MAP

1. <protocol> Manufacturing Automation Protocol.

2. Mathematical Analysis without Programming.

(01 Dec 1996)


map

1. <mathematics> function.

2. <programming> In functional programming, the most common higher-order function over lists. Map applies its first argument to each element of its second argument (a list) and returns the list of results.

	map f []     = []
 	map f (x:xs) = f x : map f xs
This can be generalised to types other than lists.

(10 Feb 1995)