Revert "src/runtime/hashmap: comments for iterator structure"

This reverts commit 8872229a0b.
Этот коммит содержится в:
Ron Evans 2022-04-04 23:45:16 +02:00
родитель b8bf0ac3f1
коммит dcd8ee63a8

Просмотреть файл

@ -41,11 +41,11 @@ type hashmapBucket struct {
}
type hashmapIterator struct {
buckets unsafe.Pointer // pointer to array of hashapBuckets
numBuckets uintptr // length of buckets array
bucketNumber uintptr // current index into buckets array
bucket *hashmapBucket // current bucket in chain
bucketIndex uint8 // current index into bucket
buckets unsafe.Pointer
numBuckets uintptr
bucketNumber uintptr
bucket *hashmapBucket
bucketIndex uint8
}
// Get the topmost 8 bits of the hash, without using a special value (like 0).