(id []byte)
| 8 | } |
| 9 | |
| 10 | func ValidSpanID(id []byte) bool { |
| 11 | return len(id) == 8 && !bytes.Equal(id, []byte{0, 0, 0, 0, 0, 0, 0, 0}) |
| 12 | } |
| 13 | |
| 14 | // SmallestPositiveNonZeroIntPerTenant is returning the minimal positive and |
| 15 | // non-zero value of the supplied limit function for all given tenants. In many |
no test coverage detected