Returns total number of bytes needed for the array */
| 38 | } |
| 39 | /* Returns total number of bytes needed for the array */ |
| 40 | inline size_t bytes() { return (BITS + CHAR_BIT - 1) / CHAR_BIT; } |
| 41 | /* Returns true if array contains any non-zero bit from the range defined by start and end |
| 42 | * bit index [startIndex, endIndex). |
| 43 | */ |