From dcecb2996b9dc1c409f669eaabfefc03e0ae4f25 Mon Sep 17 00:00:00 2001 From: Raja Subramanian Date: Sun, 15 Sep 2024 00:01:02 +0530 Subject: [PATCH] Add uint8 to Bitmap (#808) --- utils/bitmap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/bitmap.go b/utils/bitmap.go index a1a54631..afe55807 100644 --- a/utils/bitmap.go +++ b/utils/bitmap.go @@ -17,7 +17,7 @@ package utils import "math/bits" type bitmapNumber interface { - uint16 | uint32 | uint64 + uint8 | uint16 | uint32 | uint64 } type Bitmap[T bitmapNumber] struct {