type github.com/jackc/pgtype.BoolArray

32 uses

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