val map : (’a -> ’b) -> ’a list -> ’b list
List.map f [a1; ...; an] applies function f to a1, ..., an, and builds the list [f a1;
...; f an] with the results returned by f. Not tail-recursive.
Ну, например, здесь. "Не обладает св-вом хвостовой рекурсии" подойдет? А то у меня большие подозрения, что ХР - не свойство%)