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

28 uses

	go.opentelemetry.io/otel/label (current package)
		iterator.go#L20: 	storage *Set
		iterator.go#L87: func NewMergeIterator(s1, s2 *Set) MergeItererator {
		set.go#L36: 	Set struct {
		set.go#L72: 	emptySet = &Set{
		set.go#L81: func EmptySet() *Set {
		set.go#L96: func (l *Set) Len() int {
		set.go#L104: func (l *Set) Get(idx int) (KeyValue, bool) {
		set.go#L120: func (l *Set) Value(k Key) (Value, bool) {
		set.go#L141: func (l *Set) HasValue(k Key) bool {
		set.go#L150: func (l *Set) Iter() Iterator {
		set.go#L159: func (l *Set) ToSlice() []KeyValue {
		set.go#L169: func (l *Set) Equivalent() Distinct {
		set.go#L177: func (l *Set) Equals(o *Set) bool {
		set.go#L183: func (l *Set) Encoded(encoder Encoder) string {
		set.go#L229: func empty() Set {
		set.go#L230: 	return Set{
		set.go#L240: func NewSet(kvs ...KeyValue) Set {
		set.go#L253: func NewSetWithSortable(kvs []KeyValue, tmp *Sortable) Set {
		set.go#L268: func NewSetWithFiltered(kvs []KeyValue, filter Filter) (Set, []KeyValue) {
		set.go#L300: func NewSetWithSortableFiltered(kvs []KeyValue, tmp *Sortable, filter Filter) (Set, []KeyValue) {
		set.go#L333: 	return Set{
		set.go#L340: func filterSet(kvs []KeyValue, filter Filter) (Set, []KeyValue) {
		set.go#L359: 	return Set{
		set.go#L366: func (l *Set) Filter(re Filter) (Set, []KeyValue) {
		set.go#L368: 		return Set{
		set.go#L451: func (l *Set) MarshalJSON() ([]byte, error) {