Map. Here are two functions we might want to write: (* add 1 to each element of list *) let rec add1 = function | [] -> [] | h::t -> (h+1)::(add1 t) ...
確定! 回上一頁