AppendDuration appends a time.Duration to the slice
(b []byte, d time.Duration)
| 88 | |
| 89 | // AppendDuration appends a time.Duration to the slice |
| 90 | func AppendDuration(b []byte, d time.Duration) []byte { |
| 91 | return AppendInt64(b, int64(d)) |
| 92 | } |
| 93 | |
| 94 | // AppendInt64 appends an int64 to the slice |
| 95 | func AppendInt64(b []byte, i int64) []byte { |
searching dependent graphs…