Profile data recorded by a Profiler. Note that modifying or concatenating raw profile data is unsafe unless you know what you're doing.
// Profiler profiler; // Create a VariableRange from profile data with UFCS syntax. auto variables = profiler.profileData.variableRange; foreach(variable; variables) { import std.stdio; writeln(variable); }
Construct a VariableRange directly from profile data.