()
| 13 | } |
| 14 | |
| 15 | func (bc bitmapContainer) String() string { |
| 16 | var s string |
| 17 | for it := bc.getShortIterator(); it.hasNext(); { |
| 18 | s += fmt.Sprintf("%v, ", it.next()) |
| 19 | } |
| 20 | return s |
| 21 | } |
| 22 | |
| 23 | func newBitmapContainer() *bitmapContainer { |
| 24 | p := new(bitmapContainer) |
nothing calls this directly
no test coverage detected