module Util: sig end
This module implements additional functions.
val list_to_string : ('a -> string) -> string -> string -> string -> 'a list -> string
list_to_string f open close sep l
represents the list l
as string. Each element of l
is converted by function f
and the elements are separated by sep
. The resulting string
starts with the string open
and ends with the string
close
.