module charge.sys.timetracker
Source file for TimeTracker.
Code Map
//! Source file for TimeTracker.
module charge.sys.timetracker;
class TimeTracker
{
public:
this(name: string) { }
fn start() { }
fn stop() { }
public:
static fn getTimings(sink: scope (Sink)) { }
}