Dict adds the dict Event to the array
(dict *Event)
| 263 | |
| 264 | // Dict adds the dict Event to the array |
| 265 | func (a *Array) Dict(dict *Event) *Array { |
| 266 | dict.buf = enc.AppendEndMarker(dict.buf) |
| 267 | a.buf = append(enc.AppendArrayDelim(a.buf), dict.buf...) |
| 268 | putEvent(dict) |
| 269 | return a |
| 270 | } |
| 271 | |
| 272 | // Type adds the val's type using reflection to the array. |
| 273 | func (a *Array) Type(val interface{}) *Array { |
nothing calls this directly
no test coverage detected