109
}
110
111
>
func (m NameTypeMap) System() map[string]enumspb.IndexedValueType {
name_type_map.go
112
>
systemSearchAttributes := m.system()
113
>
predefinedSearchAttributes := m.predefined()
114
>
allSystem := make(
115
>
map[string]enumspb.IndexedValueType,
116
>
len(systemSearchAttributes)+len(predefinedSearchAttributes),
117
>
)
118
>
maps.Copy(allSystem, systemSearchAttributes)
119
>
maps.Copy(allSystem, predefinedSearchAttributes)
120
>
return allSystem
121
>
}
122
123
func (m NameTypeMap) Custom() map[string]enumspb.IndexedValueType {