Type adds the val's type using reflection to the array.
(val interface{})
| 271 | |
| 272 | // Type adds the val's type using reflection to the array. |
| 273 | func (a *Array) Type(val interface{}) *Array { |
| 274 | a.buf = enc.AppendType(enc.AppendArrayDelim(a.buf), val) |
| 275 | return a |
| 276 | } |
nothing calls this directly
no test coverage detected