Example #1
0
// NewLookups creates a new Lookups.
func NewLookups() *Lookups {
	return &Lookups{
		d: instruments.NewDerive(0),
	}
}
Example #2
0
// NewMallocs creates a new Mallocs.
func NewMallocs() *Mallocs {
	return &Mallocs{
		d: instruments.NewDerive(0),
	}
}
Example #3
0
// NewFrees creates a Frees.
func NewFrees() *Frees {
	return &Frees{
		d: instruments.NewDerive(0),
	}
}