14 lines
258 B
Go
Raw Normal View History

package labels
type BaseLabels interface {
Len() int
Swap(i, j int)
Less(i, j int) bool
String() string
Hash() uint64
2023-03-07 13:37:31 +05:30
HashForLabels(b []byte, names ...string) (uint64, []byte)
Get(name string) string
Has(name string) bool
Map() map[string]string
}