(time.Time, string)
| 123 | func encodeTimeLayout(t time.Time, layout string, enc PrimitiveArrayEncoder) { |
| 124 | type appendTimeEncoder interface { |
| 125 | AppendTimeLayout(time.Time, string) |
| 126 | } |
| 127 | |
| 128 | if enc, ok := enc.(appendTimeEncoder); ok { |
no outgoing calls
no test coverage detected