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 b338856 commit 768c51eCopy full SHA for 768c51e
src/internal/runtime/maps/group.go
@@ -22,10 +22,9 @@ const (
22
ctrlEmpty ctrl = 0b10000000
23
ctrlDeleted ctrl = 0b11111110
24
25
- bitsetLSB = 0x0101010101010101
26
- bitsetMSB = 0x8080808080808080
27
- bitsetEmpty = bitsetLSB * uint64(ctrlEmpty)
28
- bitsetDeleted = bitsetLSB * uint64(ctrlDeleted)
+ bitsetLSB = 0x0101010101010101
+ bitsetMSB = 0x8080808080808080
+ bitsetEmpty = bitsetLSB * uint64(ctrlEmpty)
29
)
30
31
// bitset represents a set of slots within a group.
0 commit comments