type github.com/jackc/pgtype.Int8

75 uses

	github.com/jackc/pgtype (current package)
		int8.go#L14: type Int8 struct {
		int8.go#L19: func (dst *Int8) Set(src interface{}) error {
		int8.go#L21: 		*dst = Int8{Status: Null}
		int8.go#L34: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L36: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L38: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L40: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L42: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L44: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L46: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L51: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L59: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L64: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L70: 		*dst = Int8{Int: num, Status: Present}
		int8.go#L75: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L80: 		*dst = Int8{Int: int64(value), Status: Present}
		int8.go#L83: 			*dst = Int8{Status: Null}
		int8.go#L89: 			*dst = Int8{Status: Null}
		int8.go#L95: 			*dst = Int8{Status: Null}
		int8.go#L101: 			*dst = Int8{Status: Null}
		int8.go#L107: 			*dst = Int8{Status: Null}
		int8.go#L113: 			*dst = Int8{Status: Null}
		int8.go#L119: 			*dst = Int8{Status: Null}
		int8.go#L125: 			*dst = Int8{Status: Null}
		int8.go#L131: 			*dst = Int8{Status: Null}
		int8.go#L137: 			*dst = Int8{Status: Null}
		int8.go#L143: 			*dst = Int8{Status: Null}
		int8.go#L149: 			*dst = Int8{Status: Null}
		int8.go#L155: 			*dst = Int8{Status: Null}
		int8.go#L169: func (dst Int8) Get() interface{} {
		int8.go#L180: func (src *Int8) AssignTo(dst interface{}) error {
		int8.go#L184: func (dst *Int8) DecodeText(ci *ConnInfo, src []byte) error {
		int8.go#L186: 		*dst = Int8{Status: Null}
		int8.go#L195: 	*dst = Int8{Int: n, Status: Present}
		int8.go#L199: func (dst *Int8) DecodeBinary(ci *ConnInfo, src []byte) error {
		int8.go#L201: 		*dst = Int8{Status: Null}
		int8.go#L211: 	*dst = Int8{Int: n, Status: Present}
		int8.go#L215: func (src Int8) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
		int8.go#L226: func (src Int8) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
		int8.go#L238: func (dst *Int8) Scan(src interface{}) error {
		int8.go#L240: 		*dst = Int8{Status: Null}
		int8.go#L246: 		*dst = Int8{Int: src, Status: Present}
		int8.go#L260: func (src Int8) Value() (driver.Value, error) {
		int8.go#L271: func (src Int8) MarshalJSON() ([]byte, error) {
		int8.go#L284: func (dst *Int8) UnmarshalJSON(b []byte) error {
		int8.go#L292: 		*dst = Int8{Status: Null}
		int8.go#L294: 		*dst = Int8{Int: *n, Status: Present}
		int8_array.go#L15: 	Elements   []Int8
		int8_array.go#L43: 			elements := make([]Int8, len(value))
		int8_array.go#L62: 			elements := make([]Int8, len(value))
		int8_array.go#L81: 			elements := make([]Int8, len(value))
		int8_array.go#L100: 			elements := make([]Int8, len(value))
		int8_array.go#L119: 			elements := make([]Int8, len(value))
		int8_array.go#L138: 			elements := make([]Int8, len(value))
		int8_array.go#L157: 			elements := make([]Int8, len(value))
		int8_array.go#L176: 			elements := make([]Int8, len(value))
		int8_array.go#L195: 			elements := make([]Int8, len(value))
		int8_array.go#L214: 			elements := make([]Int8, len(value))
		int8_array.go#L233: 			elements := make([]Int8, len(value))
		int8_array.go#L252: 			elements := make([]Int8, len(value))
		int8_array.go#L271: 			elements := make([]Int8, len(value))
		int8_array.go#L290: 			elements := make([]Int8, len(value))
		int8_array.go#L309: 			elements := make([]Int8, len(value))
		int8_array.go#L328: 			elements := make([]Int8, len(value))
		int8_array.go#L341: 	case []Int8:
		int8_array.go#L379: 			Elements:   make([]Int8, elementsLength),
		int8_array.go#L396: 				dst.Elements = make([]Int8, elementsLength)
		int8_array.go#L712: 	var elements []Int8
		int8_array.go#L715: 		elements = make([]Int8, len(uta.Elements))
		int8_array.go#L718: 			var elem Int8
		int8_array.go#L759: 	elements := make([]Int8, elementCount)
		int8range.go#L11: 	Lower     Int8
		int8range.go#L12: 	Upper     Int8
		pgtype.go#L291: 	ci.RegisterDataType(DataType{Value: &Int8{}, Name: "int8", OID: Int8OID})
		pgtype.go#L909: 		"int8":         &Int8{},