refactor: bitmap package

This commit is contained in:
Ilia Denisov
2025-09-09 00:13:34 +03:00
parent ffecb5d90c
commit 311320d30f
5 changed files with 317 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package bitmap
import "slices"
func (p bitmap) value() []uint32 {
return slices.Clone(p.bitVector)
}
var Value = (bitmap).value