Vector is basically only an alias for Samples, but the contract is that in a Vector, all Samples have the same timestamp.
| 302 | // Vector is basically only an alias for Samples, but the |
| 303 | // contract is that in a Vector, all Samples have the same timestamp. |
| 304 | type Vector []*Sample |
| 305 | |
| 306 | func (vec Vector) String() string { |
| 307 | entries := make([]string, len(vec)) |
nothing calls this directly
no outgoing calls
no test coverage detected