| 407 | type ByteArrayValuer [1]byte |
| 408 | type ByteSliceValuer []byte |
| 409 | type FuncArrayValuer struct { |
| 410 | delimiter func() string |
| 411 | value func() (driver.Value, error) |
| 412 | } |
| 413 | |
| 414 | func (a ByteArrayValuer) Value() (driver.Value, error) { return a[:], nil } |
| 415 | func (b ByteSliceValuer) Value() (driver.Value, error) { return []byte(b), nil } |
nothing calls this directly
no outgoing calls
no test coverage detected