Skip to content

Instantly share code, notes, and snippets.

@oplanre
oplanre / bitfield.go
Last active February 24, 2025 07:04
Added NextBitField
package bitfield
import "fmt"
type BitField[T ~uint32 | ~uint64, U ~uint32 | ~uint64] struct {
Shift int
Size int
Mask U
}