func github.com/jackc/pgx/v5/internal/pgio.AppendInt64

7 uses

	github.com/jackc/pgx/v5/internal/pgio (current package)
		write.go#L26: func AppendInt64(buf []byte, n int64) []byte {

	github.com/jackc/pgx/v5/pgtype
		int.go#L1296: 	return pgio.AppendInt64(buf, int64(n)), nil
		int.go#L1325: 	return pgio.AppendInt64(buf, int64(n.Int64)), nil
		interval.go#L112: 	buf = pgio.AppendInt64(buf, interval.Microseconds)
		time.go#L113: 	return pgio.AppendInt64(buf, t.Microseconds), nil
		timestamp.go#L187: 	buf = pgio.AppendInt64(buf, microsecSinceY2K)
		timestamptz.go#L185: 	buf = pgio.AppendInt64(buf, microsecSinceY2K)