type github.com/jackc/pgtype.InetArray

35 uses

	github.com/jackc/pgtype (current package)
		inet_array.go#L15: type InetArray struct {
		inet_array.go#L21: func (dst *InetArray) Set(src interface{}) error {
		inet_array.go#L24: 		*dst = InetArray{Status: Null}
		inet_array.go#L40: 			*dst = InetArray{Status: Null}
		inet_array.go#L42: 			*dst = InetArray{Status: Present}
		inet_array.go#L50: 			*dst = InetArray{
		inet_array.go#L59: 			*dst = InetArray{Status: Null}
		inet_array.go#L61: 			*dst = InetArray{Status: Present}
		inet_array.go#L69: 			*dst = InetArray{
		inet_array.go#L78: 			*dst = InetArray{Status: Null}
		inet_array.go#L80: 			*dst = InetArray{Status: Present}
		inet_array.go#L88: 			*dst = InetArray{
		inet_array.go#L97: 			*dst = InetArray{Status: Null}
		inet_array.go#L99: 			*dst = InetArray{Status: Present}
		inet_array.go#L101: 			*dst = InetArray{
		inet_array.go#L113: 			*dst = InetArray{Status: Null}
		inet_array.go#L122: 			*dst = InetArray{Status: Present}
		inet_array.go#L132: 		*dst = InetArray{
		inet_array.go#L167: func (dst *InetArray) setRecursive(value reflect.Value, index, dimension int) (int, error) {
		inet_array.go#L201: func (dst InetArray) Get() interface{} {
		inet_array.go#L212: func (src *InetArray) AssignTo(dst interface{}) error {
		inet_array.go#L291: func (src *InetArray) assignToRecursive(value reflect.Value, index, dimension int) (int, error) {
		inet_array.go#L338: func (dst *InetArray) DecodeText(ci *ConnInfo, src []byte) error {
		inet_array.go#L340: 		*dst = InetArray{Status: Null}
		inet_array.go#L369: 	*dst = InetArray{Elements: elements, Dimensions: uta.Dimensions, Status: Present}
		inet_array.go#L374: func (dst *InetArray) DecodeBinary(ci *ConnInfo, src []byte) error {
		inet_array.go#L376: 		*dst = InetArray{Status: Null}
		inet_array.go#L387: 		*dst = InetArray{Dimensions: arrayHeader.Dimensions, Status: Present}
		inet_array.go#L412: 	*dst = InetArray{Elements: elements, Dimensions: arrayHeader.Dimensions, Status: Present}
		inet_array.go#L416: func (src InetArray) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
		inet_array.go#L473: func (src InetArray) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
		inet_array.go#L518: func (dst *InetArray) Scan(src interface{}) error {
		inet_array.go#L536: func (src InetArray) Value() (driver.Value, error) {
		pgtype.go#L263: 	ci.RegisterDataType(DataType{Value: &InetArray{}, Name: "_inet", OID: InetArrayOID})
		pgtype.go#L879: 		"_inet":        &InetArray{},