type github.com/jackc/pgtype.Int2

70 uses

	github.com/jackc/pgtype (current package)
		int2.go#L13: type Int2 struct {
		int2.go#L18: func (dst *Int2) Set(src interface{}) error {
		int2.go#L20: 		*dst = Int2{Status: Null}
		int2.go#L33: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L35: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L37: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L42: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L50: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L55: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L63: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L68: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L76: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L81: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L87: 		*dst = Int2{Int: int16(num), Status: Present}
		int2.go#L92: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L97: 		*dst = Int2{Int: int16(value), Status: Present}
		int2.go#L100: 			*dst = Int2{Status: Null}
		int2.go#L106: 			*dst = Int2{Status: Null}
		int2.go#L112: 			*dst = Int2{Status: Null}
		int2.go#L118: 			*dst = Int2{Status: Null}
		int2.go#L124: 			*dst = Int2{Status: Null}
		int2.go#L130: 			*dst = Int2{Status: Null}
		int2.go#L136: 			*dst = Int2{Status: Null}
		int2.go#L142: 			*dst = Int2{Status: Null}
		int2.go#L148: 			*dst = Int2{Status: Null}
		int2.go#L154: 			*dst = Int2{Status: Null}
		int2.go#L160: 			*dst = Int2{Status: Null}
		int2.go#L166: 			*dst = Int2{Status: Null}
		int2.go#L172: 			*dst = Int2{Status: Null}
		int2.go#L186: func (dst Int2) Get() interface{} {
		int2.go#L197: func (src *Int2) AssignTo(dst interface{}) error {
		int2.go#L201: func (dst *Int2) DecodeText(ci *ConnInfo, src []byte) error {
		int2.go#L203: 		*dst = Int2{Status: Null}
		int2.go#L212: 	*dst = Int2{Int: int16(n), Status: Present}
		int2.go#L216: func (dst *Int2) DecodeBinary(ci *ConnInfo, src []byte) error {
		int2.go#L218: 		*dst = Int2{Status: Null}
		int2.go#L227: 	*dst = Int2{Int: n, Status: Present}
		int2.go#L231: func (src Int2) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
		int2.go#L242: func (src Int2) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
		int2.go#L254: func (dst *Int2) Scan(src interface{}) error {
		int2.go#L256: 		*dst = Int2{Status: Null}
		int2.go#L268: 		*dst = Int2{Int: int16(src), Status: Present}
		int2.go#L282: func (src Int2) Value() (driver.Value, error) {
		int2.go#L293: func (src Int2) MarshalJSON() ([]byte, error) {
		int2_array.go#L15: 	Elements   []Int2
		int2_array.go#L43: 			elements := make([]Int2, len(value))
		int2_array.go#L62: 			elements := make([]Int2, len(value))
		int2_array.go#L81: 			elements := make([]Int2, len(value))
		int2_array.go#L100: 			elements := make([]Int2, len(value))
		int2_array.go#L119: 			elements := make([]Int2, len(value))
		int2_array.go#L138: 			elements := make([]Int2, len(value))
		int2_array.go#L157: 			elements := make([]Int2, len(value))
		int2_array.go#L176: 			elements := make([]Int2, len(value))
		int2_array.go#L195: 			elements := make([]Int2, len(value))
		int2_array.go#L214: 			elements := make([]Int2, len(value))
		int2_array.go#L233: 			elements := make([]Int2, len(value))
		int2_array.go#L252: 			elements := make([]Int2, len(value))
		int2_array.go#L271: 			elements := make([]Int2, len(value))
		int2_array.go#L290: 			elements := make([]Int2, len(value))
		int2_array.go#L309: 			elements := make([]Int2, len(value))
		int2_array.go#L328: 			elements := make([]Int2, len(value))
		int2_array.go#L341: 	case []Int2:
		int2_array.go#L379: 			Elements:   make([]Int2, elementsLength),
		int2_array.go#L396: 				dst.Elements = make([]Int2, elementsLength)
		int2_array.go#L712: 	var elements []Int2
		int2_array.go#L715: 		elements = make([]Int2, len(uta.Elements))
		int2_array.go#L718: 			var elem Int2
		int2_array.go#L759: 	elements := make([]Int2, elementCount)
		pgtype.go#L288: 	ci.RegisterDataType(DataType{Value: &Int2{}, Name: "int2", OID: Int2OID})
		pgtype.go#L906: 		"int2":         &Int2{},