github.com/jackc/pgtype.Numeric.Int (field)

23 uses

	github.com/jackc/pgtype (current package)
		numeric.go#L52: 	Int    *big.Int
		numeric.go#L81: 		*dst = Numeric{Int: num, Exp: exp, Status: Present}
		numeric.go#L91: 		*dst = Numeric{Int: num, Exp: exp, Status: Present}
		numeric.go#L93: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L95: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L97: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L99: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L101: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L103: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L105: 		*dst = Numeric{Int: big.NewInt(value), Status: Present}
		numeric.go#L107: 		*dst = Numeric{Int: (&big.Int{}).SetUint64(value), Status: Present}
		numeric.go#L109: 		*dst = Numeric{Int: big.NewInt(int64(value)), Status: Present}
		numeric.go#L111: 		*dst = Numeric{Int: (&big.Int{}).SetUint64(uint64(value)), Status: Present}
		numeric.go#L117: 		*dst = Numeric{Int: num, Exp: exp, Status: Present}
		numeric.go#L363: 		return dst.Int, nil
		numeric.go#L367: 	num.Set(dst.Int)
		numeric.go#L392: 	buf = append(buf, src.Int.String()...)
		numeric.go#L419: 	*dst = Numeric{Int: num, Exp: exp, Status: Present}
		numeric.go#L470: 		*dst = Numeric{Int: big.NewInt(0), Status: Present}
		numeric.go#L542: 	*dst = Numeric{Int: accum, Exp: exp, Status: Present}
		numeric.go#L580: 	buf = append(buf, src.Int.String()...)
		numeric.go#L600: 	if src.Int.Cmp(big0) < 0 {
		numeric.go#L608: 	absInt.Abs(src.Int)