MACAddr adds a net.HardwareAddr MAC (Ethernet) address to the array
(ha net.HardwareAddr)
| 257 | |
| 258 | // MACAddr adds a net.HardwareAddr MAC (Ethernet) address to the array |
| 259 | func (a *Array) MACAddr(ha net.HardwareAddr) *Array { |
| 260 | a.buf = enc.AppendMACAddr(enc.AppendArrayDelim(a.buf), ha) |
| 261 | return a |
| 262 | } |
| 263 | |
| 264 | // Dict adds the dict Event to the array |
| 265 | func (a *Array) Dict(dict *Event) *Array { |
nothing calls this directly
no test coverage detected