type github.com/jackc/pgtype.Int4

75 uses

	github.com/jackc/pgtype (current package)
		int4.go#L14: type Int4 struct {
		int4.go#L19: func (dst *Int4) Set(src interface{}) error {
		int4.go#L21: 		*dst = Int4{Status: Null}
		int4.go#L34: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L36: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L38: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L40: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L42: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L47: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L55: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L60: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L68: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L73: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L79: 		*dst = Int4{Int: int32(num), Status: Present}
		int4.go#L84: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L89: 		*dst = Int4{Int: int32(value), Status: Present}
		int4.go#L92: 			*dst = Int4{Status: Null}
		int4.go#L98: 			*dst = Int4{Status: Null}
		int4.go#L104: 			*dst = Int4{Status: Null}
		int4.go#L110: 			*dst = Int4{Status: Null}
		int4.go#L116: 			*dst = Int4{Status: Null}
		int4.go#L122: 			*dst = Int4{Status: Null}
		int4.go#L128: 			*dst = Int4{Status: Null}
		int4.go#L134: 			*dst = Int4{Status: Null}
		int4.go#L140: 			*dst = Int4{Status: Null}
		int4.go#L146: 			*dst = Int4{Status: Null}
		int4.go#L152: 			*dst = Int4{Status: Null}
		int4.go#L158: 			*dst = Int4{Status: Null}
		int4.go#L164: 			*dst = Int4{Status: Null}
		int4.go#L178: func (dst Int4) Get() interface{} {
		int4.go#L189: func (src *Int4) AssignTo(dst interface{}) error {
		int4.go#L193: func (dst *Int4) DecodeText(ci *ConnInfo, src []byte) error {
		int4.go#L195: 		*dst = Int4{Status: Null}
		int4.go#L204: 	*dst = Int4{Int: int32(n), Status: Present}
		int4.go#L208: func (dst *Int4) DecodeBinary(ci *ConnInfo, src []byte) error {
		int4.go#L210: 		*dst = Int4{Status: Null}
		int4.go#L219: 	*dst = Int4{Int: n, Status: Present}
		int4.go#L223: func (src Int4) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
		int4.go#L234: func (src Int4) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
		int4.go#L246: func (dst *Int4) Scan(src interface{}) error {
		int4.go#L248: 		*dst = Int4{Status: Null}
		int4.go#L260: 		*dst = Int4{Int: int32(src), Status: Present}
		int4.go#L274: func (src Int4) Value() (driver.Value, error) {
		int4.go#L285: func (src Int4) MarshalJSON() ([]byte, error) {
		int4.go#L298: func (dst *Int4) UnmarshalJSON(b []byte) error {
		int4.go#L306: 		*dst = Int4{Status: Null}
		int4.go#L308: 		*dst = Int4{Int: *n, Status: Present}
		int4_array.go#L15: 	Elements   []Int4
		int4_array.go#L43: 			elements := make([]Int4, len(value))
		int4_array.go#L62: 			elements := make([]Int4, len(value))
		int4_array.go#L81: 			elements := make([]Int4, len(value))
		int4_array.go#L100: 			elements := make([]Int4, len(value))
		int4_array.go#L119: 			elements := make([]Int4, len(value))
		int4_array.go#L138: 			elements := make([]Int4, len(value))
		int4_array.go#L157: 			elements := make([]Int4, len(value))
		int4_array.go#L176: 			elements := make([]Int4, len(value))
		int4_array.go#L195: 			elements := make([]Int4, len(value))
		int4_array.go#L214: 			elements := make([]Int4, len(value))
		int4_array.go#L233: 			elements := make([]Int4, len(value))
		int4_array.go#L252: 			elements := make([]Int4, len(value))
		int4_array.go#L271: 			elements := make([]Int4, len(value))
		int4_array.go#L290: 			elements := make([]Int4, len(value))
		int4_array.go#L309: 			elements := make([]Int4, len(value))
		int4_array.go#L328: 			elements := make([]Int4, len(value))
		int4_array.go#L341: 	case []Int4:
		int4_array.go#L379: 			Elements:   make([]Int4, elementsLength),
		int4_array.go#L396: 				dst.Elements = make([]Int4, elementsLength)
		int4_array.go#L712: 	var elements []Int4
		int4_array.go#L715: 		elements = make([]Int4, len(uta.Elements))
		int4_array.go#L718: 			var elem Int4
		int4_array.go#L759: 	elements := make([]Int4, elementCount)
		int4range.go#L11: 	Lower     Int4
		int4range.go#L12: 	Upper     Int4
		pgtype.go#L289: 	ci.RegisterDataType(DataType{Value: &Int4{}, Name: "int4", OID: Int4OID})
		pgtype.go#L907: 		"int4":         &Int4{},