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 ZoneRange from profile data with UFCS syntax. auto zones = profiler.profileData.zoneRange; foreach(zone; zones) { import std.stdio; writeln(zone); }
Construct a ZoneRange directly from profile data.