let rec w_lst w_sep w_data l = let open Wrap in let rec aux = function | [] -> noop | [ x ] -> w_data x | x :: r -> w_data x $ w_sep $ aux r in aux l