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

31 uses

	go.opentelemetry.io/otel/attribute (current package)
		iterator.go#L20: 	storage *Set
		iterator.go#L98: func NewMergeIterator(s1, s2 *Set) MergeIterator {
		set.go#L31: 	Set struct {
		set.go#L54: 	emptySet = &Set{
		set.go#L70: func EmptySet() *Set {
		set.go#L85: func (l *Set) Len() int {
		set.go#L93: func (l *Set) Get(idx int) (KeyValue, bool) {
		set.go#L109: func (l *Set) Value(k Key) (Value, bool) {
		set.go#L130: func (l *Set) HasValue(k Key) bool {
		set.go#L139: func (l *Set) Iter() Iterator {
		set.go#L148: func (l *Set) ToSlice() []KeyValue {
		set.go#L157: func (l *Set) Equivalent() Distinct {
		set.go#L165: func (l *Set) Equals(o *Set) bool {
		set.go#L170: func (l *Set) Encoded(encoder Encoder) string {
		set.go#L178: func empty() Set {
		set.go#L179: 	return Set{
		set.go#L189: func NewSet(kvs ...KeyValue) Set {
		set.go#L204: func NewSetWithSortable(kvs []KeyValue, tmp *Sortable) Set {
		set.go#L218: func NewSetWithFiltered(kvs []KeyValue, filter Filter) (Set, []KeyValue) {
		set.go#L252: func NewSetWithSortableFiltered(kvs []KeyValue, tmp *Sortable, filter Filter) (Set, []KeyValue) {
		set.go#L285: 	return Set{
		set.go#L292: func filterSet(kvs []KeyValue, filter Filter) (Set, []KeyValue) {
		set.go#L311: 	return Set{
		set.go#L318: func (l *Set) Filter(re Filter) (Set, []KeyValue) {
		set.go#L320: 		return Set{
		set.go#L403: func (l *Set) MarshalJSON() ([]byte, error) {
		set.go#L408: func (l Set) MarshalLog() interface{} {

	go.opentelemetry.io/otel/trace
		config.go#L28: 	attrs     attribute.Set
		config.go#L38: func (t *TracerConfig) InstrumentationAttributes() attribute.Set {