Files
budget-backend/vendor/github.com/bytedance/sonic/internal/rt/map_legacy.go
kratisto f8df24c29d
Some checks failed
golangci-lint / lint (push) Failing after 1m30s
Test / test (push) Failing after 2m17s
chore: migrate to gitea
2026-01-27 01:45:58 +01:00

26 lines
448 B
Go

// +build !go1.24
package rt
import (
"unsafe"
)
type GoMapIterator struct {
K unsafe.Pointer
V unsafe.Pointer
T *GoMapType
H unsafe.Pointer
Buckets unsafe.Pointer
Bptr *unsafe.Pointer
Overflow *[]unsafe.Pointer
OldOverflow *[]unsafe.Pointer
StartBucket uintptr
Offset uint8
Wrapped bool
B uint8
I uint8
Bucket uintptr
CheckBucket uintptr
}