Aggregated is a list of Bucket sorted by repetition count.
| 25 | |
| 26 | // Aggregated is a list of Bucket sorted by repetition count. |
| 27 | type Aggregated struct { |
| 28 | // Snapshot is a pointer to the structure that was used to generate these |
| 29 | // buckets. |
| 30 | *Snapshot |
| 31 | |
| 32 | Buckets []*Bucket |
| 33 | |
| 34 | // Disallow initialization with unnamed parameters. |
| 35 | _ struct{} |
| 36 | } |
| 37 | |
| 38 | // Aggregate merges similar goroutines into buckets. |
| 39 | // |
nothing calls this directly
no outgoing calls
no test coverage detected