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