type github.com/jackc/pgtype.TextArray

32 uses

	github.com/jackc/pgtype (current package)
		pgtype.go#L268: 	ci.RegisterDataType(DataType{Value: &TextArray{}, Name: "_text", OID: TextArrayOID})
		pgtype.go#L884: 		"_text":        &TextArray{},
		text_array.go#L14: type TextArray struct {
		text_array.go#L20: func (dst *TextArray) Set(src interface{}) error {
		text_array.go#L23: 		*dst = TextArray{Status: Null}
		text_array.go#L39: 			*dst = TextArray{Status: Null}
		text_array.go#L41: 			*dst = TextArray{Status: Present}
		text_array.go#L49: 			*dst = TextArray{
		text_array.go#L58: 			*dst = TextArray{Status: Null}
		text_array.go#L60: 			*dst = TextArray{Status: Present}
		text_array.go#L68: 			*dst = TextArray{
		text_array.go#L77: 			*dst = TextArray{Status: Null}
		text_array.go#L79: 			*dst = TextArray{Status: Present}
		text_array.go#L81: 			*dst = TextArray{
		text_array.go#L93: 			*dst = TextArray{Status: Null}
		text_array.go#L102: 			*dst = TextArray{Status: Present}
		text_array.go#L112: 		*dst = TextArray{
		text_array.go#L147: func (dst *TextArray) setRecursive(value reflect.Value, index, dimension int) (int, error) {
		text_array.go#L181: func (dst TextArray) Get() interface{} {
		text_array.go#L192: func (src *TextArray) AssignTo(dst interface{}) error {
		text_array.go#L262: func (src *TextArray) assignToRecursive(value reflect.Value, index, dimension int) (int, error) {
		text_array.go#L309: func (dst *TextArray) DecodeText(ci *ConnInfo, src []byte) error {
		text_array.go#L311: 		*dst = TextArray{Status: Null}
		text_array.go#L340: 	*dst = TextArray{Elements: elements, Dimensions: uta.Dimensions, Status: Present}
		text_array.go#L345: func (dst *TextArray) DecodeBinary(ci *ConnInfo, src []byte) error {
		text_array.go#L347: 		*dst = TextArray{Status: Null}
		text_array.go#L358: 		*dst = TextArray{Dimensions: arrayHeader.Dimensions, Status: Present}
		text_array.go#L383: 	*dst = TextArray{Elements: elements, Dimensions: arrayHeader.Dimensions, Status: Present}
		text_array.go#L387: func (src TextArray) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
		text_array.go#L444: func (src TextArray) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
		text_array.go#L489: func (dst *TextArray) Scan(src interface{}) error {
		text_array.go#L507: func (src TextArray) Value() (driver.Value, error) {