let htmls = [ "<crap>foo</crap>"; "<crap>bar</crap>"]
let remove pat (x:string) = x.Replace(pat,"")
let removecrap = [ remove "<crap>"; remove "</crap>" ]
//
removecrap is a list of functions that take a string and return a string
let rec mapf (lf: ('a->'a) 'a->'a) list) (li: 'a list) =
match lf with
| [] -> > li
| hd::tl -> > mapf tl (List.map hd li)
let result = mapf removecrap htmls
//
Instead of List.map applying one function to every element in a list, mapf now applies a list of functions to every element in a list. Personally I like this construction a lot, but I wonder if there is a more standard F# way of doing this.
