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

33 uses

	go.opentelemetry.io/otel/attribute (current package)
		iterator.go#L9: 	storage *Set
		iterator.go#L87: func NewMergeIterator(s1, s2 *Set) MergeIterator {
		set.go#L30: 	Set struct {
		set.go#L53: 	_ = isComparable(Set{})
		set.go#L71: 	userDefinedEmptySet = &Set{
		set.go#L76: 	emptySet = Set{
		set.go#L85: func EmptySet() *Set {
		set.go#L97: func (l Set) reflectValue() reflect.Value {
		set.go#L102: func (l *Set) Len() int {
		set.go#L110: func (l *Set) Get(idx int) (KeyValue, bool) {
		set.go#L126: func (l *Set) Value(k Key) (Value, bool) {
		set.go#L147: func (l *Set) HasValue(k Key) bool {
		set.go#L156: func (l *Set) Iter() Iterator {
		set.go#L165: func (l *Set) ToSlice() []KeyValue {
		set.go#L174: func (l *Set) Equivalent() Distinct {
		set.go#L182: func (l *Set) Equals(o *Set) bool {
		set.go#L196: func (l *Set) Encoded(encoder Encoder) string {
		set.go#L209: func NewSet(kvs ...KeyValue) Set {
		set.go#L220: func NewSetWithSortable(kvs []KeyValue, _ *Sortable) Set {
		set.go#L230: func NewSetWithFiltered(kvs []KeyValue, filter Filter) (Set, []KeyValue) {
		set.go#L293: func NewSetWithSortableFiltered(kvs []KeyValue, _ *Sortable, filter Filter) (Set, []KeyValue) {
		set.go#L315: func (l *Set) Filter(re Filter) (Set, []KeyValue) {
		set.go#L359: func newSet(kvs []KeyValue) Set {
		set.go#L360: 	s := Set{
		set.go#L410: func (l *Set) MarshalJSON() ([]byte, error) {
		set.go#L415: func (l Set) MarshalLog() any {

	go.opentelemetry.io/otel/trace
		config.go#L18: 	attrs     attribute.Set
		config.go#L28: func (t *TracerConfig) InstrumentationAttributes() attribute.Set {
		config.go#L326: func mergeSets(a, b attribute.Set) attribute.Set {
		config.go#L355: func WithInstrumentationAttributeSet(set attribute.Set) TracerOption {