()
| 16 | ) |
| 17 | |
| 18 | func (ac *arrayContainer) String() string { |
| 19 | s := "{" |
| 20 | for it := ac.getShortIterator(); it.hasNext(); { |
| 21 | s += fmt.Sprintf("%v, ", it.next()) |
| 22 | } |
| 23 | return s + "}" |
| 24 | } |
| 25 | |
| 26 | func (ac *arrayContainer) fillLeastSignificant16bits(x []uint32, i int, mask uint32) int { |
| 27 | if i < 0 { |
nothing calls this directly
no test coverage detected