Dur appends d to the array.
(d time.Duration)
| 230 | |
| 231 | // Dur appends d to the array. |
| 232 | func (a *Array) Dur(d time.Duration) *Array { |
| 233 | a.buf = enc.AppendDuration(enc.AppendArrayDelim(a.buf), d, DurationFieldUnit, DurationFieldFormat, DurationFieldInteger, FloatingPointPrecision) |
| 234 | return a |
| 235 | } |
| 236 | |
| 237 | // Interface appends i marshaled using reflection. |
| 238 | func (a *Array) Interface(i interface{}) *Array { |
nothing calls this directly
no test coverage detected