type go.uber.org/atomic.Int64

19 uses

	go.uber.org/atomic (current package)
		duration.go#L34: 	v Int64
		int64.go#L32: type Int64 struct {
		int64.go#L39: func NewInt64(val int64) *Int64 {
		int64.go#L40: 	return &Int64{v: val}
		int64.go#L44: func (i *Int64) Load() int64 {
		int64.go#L49: func (i *Int64) Add(delta int64) int64 {
		int64.go#L54: func (i *Int64) Sub(delta int64) int64 {
		int64.go#L59: func (i *Int64) Inc() int64 {
		int64.go#L64: func (i *Int64) Dec() int64 {
		int64.go#L71: func (i *Int64) CAS(old, new int64) (swapped bool) {
		int64.go#L76: func (i *Int64) CompareAndSwap(old, new int64) (swapped bool) {
		int64.go#L81: func (i *Int64) Store(val int64) {
		int64.go#L86: func (i *Int64) Swap(val int64) (old int64) {
		int64.go#L91: func (i *Int64) MarshalJSON() ([]byte, error) {
		int64.go#L96: func (i *Int64) UnmarshalJSON(b []byte) error {
		int64.go#L106: func (i *Int64) String() string {

	github.com/gotd/td/internal/pool
		pool.go#L37: 	nextConn atomic.Int64
		req_map.go#L16: 	nextRequest atomic.Int64

	github.com/gotd/td/telegram
		client.go#L94: 	connsCounter atomic.Int64