The Vector type represents a version vector. The zero value is a usable version vector. The vector has slice semantics and some operations on it are "append-like" in that they may return the same vector modified, or v new allocated Vector with the modified contents.
| 22 | // are "append-like" in that they may return the same vector modified, or v |
| 23 | // new allocated Vector with the modified contents. |
| 24 | type Vector struct { |
| 25 | Counters []Counter |
| 26 | } |
| 27 | |
| 28 | func (v *Vector) String() string { |
| 29 | var buf strings.Builder |
nothing calls this directly
no outgoing calls
no test coverage detected