type go.opentelemetry.io/otel/label.Key

36 uses

	go.opentelemetry.io/otel/label (current package)
		key.go#L19: type Key string
		key.go#L27: func (k Key) Bool(v bool) KeyValue {
		key.go#L40: func (k Key) Int64(v int64) KeyValue {
		key.go#L53: func (k Key) Uint64(v uint64) KeyValue {
		key.go#L66: func (k Key) Float64(v float64) KeyValue {
		key.go#L79: func (k Key) Int32(v int32) KeyValue {
		key.go#L92: func (k Key) Uint32(v uint32) KeyValue {
		key.go#L105: func (k Key) Float32(v float32) KeyValue {
		key.go#L118: func (k Key) String(v string) KeyValue {
		key.go#L132: func (k Key) Int(v int) KeyValue {
		key.go#L146: func (k Key) Uint(v uint) KeyValue {
		key.go#L154: func (k Key) Defined() bool {
		key.go#L164: func (k Key) Array(v interface{}) KeyValue {
		kv.go#L25: 	Key   Key
		kv.go#L32: 	return Key(k).Bool(v)
		kv.go#L38: 	return Key(k).Int64(v)
		kv.go#L44: 	return Key(k).Uint64(v)
		kv.go#L50: 	return Key(k).Float64(v)
		kv.go#L56: 	return Key(k).Int32(v)
		kv.go#L62: 	return Key(k).Uint32(v)
		kv.go#L68: 	return Key(k).Float32(v)
		kv.go#L74: 	return Key(k).String(v)
		kv.go#L80: 	return Key(k).String(v.String())
		kv.go#L87: 	return Key(k).Int(v)
		kv.go#L94: 	return Key(k).Uint(v)
		kv.go#L100: 	return Key(k).Array(v)
		set.go#L120: func (l *Set) Value(k Key) (Value, bool) {
		set.go#L141: func (l *Set) HasValue(k Key) bool {

	go.opentelemetry.io/otel/api/correlation
		map.go#L19: type rawMap map[label.Key]label.Value
		map.go#L20: type keySet map[label.Key]struct{}
		map.go#L33: 	DropSingleK label.Key
		map.go#L36: 	DropMultiK []label.Key
		map.go#L102: 		delSet = make(map[label.Key]struct{}, deletionsCount)
		map.go#L116: 		addSet = make(map[label.Key]struct{}, additionsCount)
		map.go#L147: func (m Map) Value(k label.Key) (label.Value, bool) {
		map.go#L154: func (m Map) HasValue(k label.Key) bool {