.he 'MAPLIST''Page %'
.fo 'STeven Hardy''January 78'
MAPLIST	This function takes as argument a list and a function;  it
returns a list whose elements are the result of applying the given
function to each element of the given list.  Thus:
 	: MAPLIST([1 2 3 4], DOUBLE) =>
 	** [12 4 6 8]
 	: MAPLIST([A B C D], LAMBDA (X); [%X%] END) =>
 	** [[A] [B] [C] [D]]
.br
MAPLIST could be defined as:
 	: FUNCTION MAPLIST(LIST,FUNC);
 	:	[% APPLIST(LIST,FUNC) %]
 	: END;
