Tag represent sample annotations
| 291 | |
| 292 | // Tag represent sample annotations |
| 293 | type Tag struct { |
| 294 | Name string |
| 295 | Unit string // Describe the value, "" for non-numeric tags |
| 296 | Value int64 |
| 297 | Flat, FlatDiv int64 |
| 298 | Cum, CumDiv int64 |
| 299 | } |
| 300 | |
| 301 | // FlatValue returns the exclusive value for this tag, computing the |
| 302 | // mean if a divisor is available. |
nothing calls this directly
no outgoing calls
no test coverage detected