We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8bf0ac commit dcd8ee6Copy full SHA for dcd8ee6
src/runtime/hashmap.go
@@ -41,11 +41,11 @@ type hashmapBucket struct {
41
}
42
43
type hashmapIterator struct {
44
- buckets unsafe.Pointer // pointer to array of hashapBuckets
45
- numBuckets uintptr // length of buckets array
46
- bucketNumber uintptr // current index into buckets array
47
- bucket *hashmapBucket // current bucket in chain
48
- bucketIndex uint8 // current index into bucket
+ buckets unsafe.Pointer
+ numBuckets uintptr
+ bucketNumber uintptr
+ bucket *hashmapBucket
+ bucketIndex uint8
49
50
51
// Get the topmost 8 bits of the hash, without using a special value (like 0).
0 commit comments