package bitmap import "slices" func (p Bitmap) value() []uint32 { return slices.Clone(p.bitVector) } var Value = (Bitmap).value