12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849(* This file is free software, part of dolmen. See file "LICENSE" for more information. *)letget_extensions=letrecauxsi=ifi<=0then""elsematchs.[i]with|'.'->String.subsi(String.lengths-i)|_->auxs(i-1)inauxs(String.lengths-1)letreplicatenx=letrecauxxacci=ifi<=0thenaccelseauxx(x::acc)(i-1)inauxx[]n(* Option printing *)letpp_opt?(none="<none>")ppb=function|Somet->ppbt|None->Printf.bprintfb"%s"noneletprint_opt?(none="<none>")printfmt=function|Somet->printfmtt|None->Format.fprintffmt"%s"none(* List printing functions *)letrecpp_list~pp_sep~sep~ppb=function|[]->()|[h]->ppbh|h::r->Printf.bprintfb"%a%a%a"pphpp_sepsep(pp_list~pp_sep~sep~pp)rletrecprint_list~print_sep~sep~printfmt=function|[]->()|[h]->printfmth|h::r->Format.fprintffmt"%a%a%a"printhprint_sepsep(print_list~print_sep~sep~print)r