Skorzystaj z wyszukiwarki lub indeksu alfabetycznego.
Przykłady: pci, /dev/null, functional unit, embedded system, pseudo-tty, nfs.
2 definitions found
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
MAP
1. Manufacturing Automation Protocol.
2. Mathematical Analysis without Programming.
(1996-12-01)
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
map
1. function.
2. 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 :: (a -> b) -> [a] -> [b]
map f [] = []
map f (x:xs) = f x : map f xs
This can be generalised to types other than lists.
(1997-11-05)