(from, to pcommon.Map)
| 314 | } |
| 315 | |
| 316 | func joinAttributeMaps(from, to pcommon.Map) { |
| 317 | from.Range(func(k string, v pcommon.Value) bool { |
| 318 | v.CopyTo(to.PutEmpty(k)) |
| 319 | return true |
| 320 | }) |
| 321 | } |
| 322 | |
| 323 | // otlpProtoMessage Implements proto.Meesage, proto.Unmarshaler |
| 324 | type otlpProtoMessage struct { |
no outgoing calls
no test coverage detected