NewBitArray returns a new BitArray at the specified size. The optional arg denotes whether this bitarray should be set to the bitwise complement of the empty array, ie. sets all bits.
(size uint64, args ...bool)
| 388 | // optional arg denotes whether this bitarray should be set to the |
| 389 | // bitwise complement of the empty array, ie. sets all bits. |
| 390 | func NewBitArray(size uint64, args ...bool) BitArray { |
| 391 | return newBitArray(size, args...) |
| 392 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…