liquidsoap-lang
Liquidsoap_lang.Profiler
liquidsoap-lang.console
liquidsoap-lang.stdlib
liquidsoap-lang.tooling
type t = {
total_time : float;
Time spent in the function.
self_time : float;
Time spent in the function excluding children.
}
Function call information.
val calls : (string * t) list ref
val stack : string list ref
val children : float ref list ref
val add : string -> t -> unit
Indicate the time spent in a given function.
val time : string -> ('a -> 'b) -> 'a -> 'b
Measure time for a given function.
module M : sig ... end
val stats : unit -> string