Type
Records all information gathered during the profiling of a function.
MLWORKS.Profile
MLWorks.Profile
datatype function_profile = Function_Profile of
{id: function_id,
call_count: int,
time: function_time_profile,
space: function_space_profile}This datatype records all information gathered during the profiling of a function. The record contains the following data:
id
call_count
timefunction_time_profile containing time-profiling results. This field will have no useful value unless you request time profiling in the profiling manner.
spacefunction_space_profile containing space-profiling results. This field will have no useful value unless you request space profiling in the profiling manner.