MCPcopy Index your code
hub / github.com/aarondl/sqlboiler / FuncArrayValuer

Struct FuncArrayValuer

types/array_test.go:1130–1133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1128type ByteArrayValuer [1]byte
1129type ByteSliceValuer []byte
1130type FuncArrayValuer struct {
1131 delimiter func() string
1132 value func() (driver.Value, error)
1133}
1134
1135func (a ByteArrayValuer) Value() (driver.Value, error) { return a[:], nil }
1136func (b ByteSliceValuer) Value() (driver.Value, error) { return []byte(b), nil }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected