EncodeTimeValue encodes a time.Time value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, t time.Time)
| 2658 | // EncodeTimeValue encodes a time.Time value with its value tag, appends it to |
| 2659 | // the supplied buffer, and returns the final buffer. |
| 2660 | func EncodeTimeValue(appendTo []byte, colIDDelta uint32, t time.Time) []byte { |
| 2661 | appendTo = EncodeValueTag(appendTo, colIDDelta, Time) |
| 2662 | return EncodeUntaggedTimeValue(appendTo, t) |
| 2663 | } |
| 2664 | |
| 2665 | // EncodeUntaggedTimeValue encodes a time.Time value, appends it to the supplied buffer, |
| 2666 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…